diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-04 17:31:04 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-04 17:31:04 +0200 |
commit | 07ce2cc784a0d420fbc807244847b55389427f6c (patch) | |
tree | 9ccd0f73be06633204d80f92c35f191cb9bbd1ff /inc/cub3d_structs.h | |
parent | Merge branch 'adventures' into bad_boy_select (diff) | |
download | 42-cub3d-07ce2cc784a0d420fbc807244847b55389427f6c.tar.gz 42-cub3d-07ce2cc784a0d420fbc807244847b55389427f6c.tar.bz2 42-cub3d-07ce2cc784a0d420fbc807244847b55389427f6c.tar.xz 42-cub3d-07ce2cc784a0d420fbc807244847b55389427f6c.tar.zst 42-cub3d-07ce2cc784a0d420fbc807244847b55389427f6c.zip |
Selectable enemy
Diffstat (limited to 'inc/cub3d_structs.h')
-rw-r--r-- | inc/cub3d_structs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h index 3eabcad..8d22b86 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -203,6 +203,7 @@ typedef struct s_map size_t line_chk; size_t map_start; uint8_t isspawn; + uint8_t enemy; uint8_t isnlvl; uint8_t ismusic; uint8_t isftex; @@ -259,7 +260,7 @@ typedef struct s_cub uint16_t ammo_num_w; int (*key_ptr[6])(struct s_cub*); int8_t (*get_ptr[14])(char**, struct s_cub*); - char ref[22][3]; + char ref[23][3]; struct s_win wlist; struct s_player plist; struct s_map mlist; |