summaryrefslogtreecommitdiff
path: root/src/game/game.hpp
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2017-12-16 17:09:34 +0100
committerPaweł Redman <pawel.redman@gmail.com>2017-12-16 17:09:34 +0100
commitd0061c0c66133267ed38aec41a97541c047a5c1a (patch)
tree67ff1622c20612d1ee7682625bc8e68df5ed3b2d /src/game/game.hpp
parent3f4e91d450bc79f1551f1c324bf5f6a5009cc25a (diff)
Add nests (as decorations for now).
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r--src/game/game.hpp5
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 {