diff options
Diffstat (limited to 'src/entity.h')
-rw-r--r-- | src/entity.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/entity.h b/src/entity.h index fdfe55e..cd5659a 100644 --- a/src/entity.h +++ b/src/entity.h @@ -5,12 +5,13 @@ #ifndef ENTITY_H #define ENTITY_H -#define ENTITY_COUNT 5 +#define ENTITY_COUNT 6 -// Entity scales. #define TREE_SCALE 40.0 #define BUSH_SCALE 8.0 #define FLOWER_SCALE 3.0 +#define POND_SIZE 100.0 +#define POND_HEIGHT 10.0 typedef int8_t EntityId; @@ -20,7 +21,8 @@ enum { STICKY_NICKEL, TREE, BUSH, - FLOWER + FLOWER, + POND }; typedef struct { |