diff options
Diffstat (limited to 'src/entity.h')
-rw-r--r-- | src/entity.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/entity.h b/src/entity.h index 839a847..30b2fcd 100644 --- a/src/entity.h +++ b/src/entity.h @@ -5,7 +5,7 @@ #ifndef ENTITY_H #define ENTITY_H -#define ENTITY_COUNT 10 +#define ENTITY_COUNT 12 #define TREE_SCALE 40.0 #define BUSH_SCALE 3.0 @@ -32,6 +32,10 @@ #define TRASHCAN_WIDTH 45.0 #define TRASHCAN_HEIGHT 60.0 +#define TRASH_SCALE 2.0 + +#define MEDICAL_TRASH_SCALE 2.0 + typedef int8_t EntityId; enum { @@ -45,7 +49,9 @@ enum { UTILITY_POLE, SAMANTHA, SAMANTHAS_SPOT, - TRASHCAN + TRASHCAN, + TRASH, + MEDICAL_TRASH }; typedef struct { |