diff options
Diffstat (limited to 'src/game/game.h')
| -rw-r--r-- | src/game/game.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/game.h b/src/game/game.h index 3331d6f5..81510c93 100644 --- a/src/game/game.h +++ b/src/game/game.h @@ -34,6 +34,7 @@ enum OBJTYPE_PLAYER, OBJTYPE_PROJECTILE, OBJTYPE_POWERUP, + OBJTYPE_FLAG, EVENT_EXPLOSION, EVENT_DAMAGEINDICATION, EVENT_SOUND, @@ -130,6 +131,12 @@ struct obj_powerup int subtype; }; +struct obj_flag +{ + int x, y; + int team; +}; + struct obj_player { int local; |