test 1 doc

Dependencies:   mbed Gamepad2

Committer:
joebarhouch
Date:
Wed May 27 07:52:55 2020 +0000
Revision:
15:9ea5269b4cd4
Parent:
10:9317a62bd4d0
el18jb; VOLATILE!

Who changed what in which revision?

UserRevisionLine numberNew contents of line
joebarhouch 10:9317a62bd4d0 1 #ifndef ENEMYSPRITES_H
joebarhouch 10:9317a62bd4d0 2 #define ENEMYSPRITES_H
joebarhouch 10:9317a62bd4d0 3
joebarhouch 10:9317a62bd4d0 4 int s_enemy1[] = { //7x - 5y
joebarhouch 10:9317a62bd4d0 5
joebarhouch 10:9317a62bd4d0 6 1,1,1,1,1,1,1,
joebarhouch 10:9317a62bd4d0 7 1,1,1,0,1,0,1,
joebarhouch 10:9317a62bd4d0 8 1,1,1,0,1,0,1,
joebarhouch 10:9317a62bd4d0 9 1,1,1,1,1,1,1,
joebarhouch 10:9317a62bd4d0 10 0,1,1,1,1,1,1
joebarhouch 10:9317a62bd4d0 11
joebarhouch 10:9317a62bd4d0 12 };
joebarhouch 10:9317a62bd4d0 13
joebarhouch 10:9317a62bd4d0 14 int s_enemy1_inv[] = {
joebarhouch 10:9317a62bd4d0 15
joebarhouch 10:9317a62bd4d0 16 1,1,1,1,1,1,1,
joebarhouch 10:9317a62bd4d0 17 1,0,1,0,1,1,1,
joebarhouch 10:9317a62bd4d0 18 1,0,1,0,1,1,1,
joebarhouch 10:9317a62bd4d0 19 1,1,1,1,1,1,1,
joebarhouch 10:9317a62bd4d0 20 1,1,1,1,1,1,0
joebarhouch 10:9317a62bd4d0 21
joebarhouch 10:9317a62bd4d0 22 };
joebarhouch 10:9317a62bd4d0 23
joebarhouch 10:9317a62bd4d0 24 int s_enemy2[] = {
joebarhouch 10:9317a62bd4d0 25 1,1,1,1,1,1,1,
joebarhouch 10:9317a62bd4d0 26 1,1,0,1,0,1,1,
joebarhouch 10:9317a62bd4d0 27 1,1,1,1,1,1,1,
joebarhouch 10:9317a62bd4d0 28 1,1,1,1,1,1,1,
joebarhouch 10:9317a62bd4d0 29 0,1,1,1,1,1,0
joebarhouch 10:9317a62bd4d0 30
joebarhouch 10:9317a62bd4d0 31 };
joebarhouch 10:9317a62bd4d0 32
joebarhouch 10:9317a62bd4d0 33 int s_enemy2_inv[] = {
joebarhouch 10:9317a62bd4d0 34 0,1,1,1,1,1,0,
joebarhouch 10:9317a62bd4d0 35 1,1,1,1,1,1,1,
joebarhouch 10:9317a62bd4d0 36 1,1,1,1,1,1,1,
joebarhouch 10:9317a62bd4d0 37 1,1,0,1,0,1,1,
joebarhouch 10:9317a62bd4d0 38 1,1,1,1,1,1,1
joebarhouch 10:9317a62bd4d0 39
joebarhouch 10:9317a62bd4d0 40 };
joebarhouch 10:9317a62bd4d0 41
joebarhouch 10:9317a62bd4d0 42 #endif