diff options
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r-- | src/game/game.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp index e1eca84..4cc1077 100644 --- a/src/game/game.hpp +++ b/src/game/game.hpp @@ -44,7 +44,7 @@ namespace game { } fx_assets_t; typedef struct { - render::animated_texture_t stone, eyething; + render::animated_texture_t stone, eyething, nest; } deco_assets_t; extern human_assets_t human; @@ -185,7 +185,8 @@ namespace game { typedef enum { DECO_STONE, DECO_STONE_SMALL, - DECO_EYETHING + DECO_EYETHING, + DECO_NEST } deco_type_t; class deco_t : public world::entity_t { |