projects
/
hackover2013-badge-firmware.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Levelauswahl auf Badge.
[hackover2013-badge-firmware.git]
/
badge
/
jumpnrun
/
enemies.h
diff --git
a/badge/jumpnrun/enemies.h
b/badge/jumpnrun/enemies.h
index
1cf8f06
..
c7dfa7e
100644
(file)
--- a/
badge/jumpnrun/enemies.h
+++ b/
badge/jumpnrun/enemies.h
@@
-47,9
+47,10
@@
typedef struct jumpnrun_enemy {
enum {
// Do not collide with JUMPNRUN_MOVEABLE_* flags
enum {
// Do not collide with JUMPNRUN_MOVEABLE_* flags
- JUMPNRUN_ENEMY_SPAWNED = 4,
- JUMPNRUN_ENEMY_UNAVAILABLE = 8,
- JUMPNRUN_ENEMY_EVENT_TRIGGER1 = 128
+ JUMPNRUN_ENEMY_SPAWNED = 128,
+ JUMPNRUN_ENEMY_UNAVAILABLE = 64,
+ JUMPNRUN_ENEMY_MOVING = 32,
+ JUMPNRUN_ENEMY_EVENT_TRIGGER1 = 16
};
static inline rectangle const *enemy_hitbox(jumpnrun_enemy const *enemy) { return &enemy->base.hitbox; }
};
static inline rectangle const *enemy_hitbox(jumpnrun_enemy const *enemy) { return &enemy->base.hitbox; }
This page took
0.022771 seconds
and
4
git commands to generate.