diff options
Diffstat (limited to 'src/char')
-rw-r--r-- | src/char/enemy.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/char/enemy.c b/src/char/enemy.c index 1ac5871..8cd2a21 100644 --- a/src/char/enemy.c +++ b/src/char/enemy.c @@ -25,7 +25,9 @@ #include "char.h" struct mf_enemy { - struct mf_char parent; + struct mf_char parent; + int num_allies; + struct mf_char **allies; }; static int @@ -126,12 +128,13 @@ _mf_enemy_destroy(struct mf_char *c __attribute__((__unused__))) } struct mf_char * -mf_enemy_new(struct mf_maze *maze, int cell_width, int maze_size) +mf_enemy_new(struct mf_maze *maze, int cell_width, int maze_size, + int num_allies, struct mf_char **allies) { struct mf_char *c; - struct mf_enemy *p __attribute__((__unused__)); + struct mf_enemy *e; - mf_char_init(c, p, enemy); + mf_char_init(c, e, enemy); c->maze = maze; c->cell_width = cell_width; @@ -165,6 +168,9 @@ mf_enemy_new(struct mf_maze *maze, int cell_width, int maze_size) _mf_enemy_step(c); c->cur_dir = c->new_dir; + e->num_allies = num_allies; + e->allies = allies; + return c; } |