diff options
Diffstat (limited to 'entry.h')
-rw-r--r-- | entry.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,6 +3,7 @@ #include "structures.h" #include "players.h" +#include "target.h" struct entry_t { /* displayed name */ @@ -14,9 +15,9 @@ struct entry_t { struct { void *data; - void (*f)(SURFACES *, POSITIONS *, struct character_t *, struct character_t *, void *data); + void (*f)(SURFACES *, POSITIONS *, struct character_t *, struct target_t *, void *data); - enum target_t target; + enum target_type_t target; } action; }; }; |