#ifndef TARGET_H #define TARGET_H #include #include "players.h" struct target_t { bool is_chr; union { struct team_t *team; struct character_t *chr; }; }; #endif /* TARGET_H */