diff options
author | nathan <nathansmith@disroot.org> | 2025-08-25 14:51:32 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-08-25 14:51:32 +0000 |
commit | 459aca4f1fe506340bc6238f8da39f494bb45352 (patch) | |
tree | e94ab943627158d531d0f29eaa332d035a48b92a /src/entity.h | |
parent | 6b394e9429c26b2c0a3a2f19ce48b16d57fa098e (diff) | |
download | FindThings-459aca4f1fe506340bc6238f8da39f494bb45352.tar.gz FindThings-459aca4f1fe506340bc6238f8da39f494bb45352.tar.bz2 FindThings-459aca4f1fe506340bc6238f8da39f494bb45352.zip |
Lazy day (:
Diffstat (limited to 'src/entity.h')
-rw-r--r-- | src/entity.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/entity.h b/src/entity.h index 68caf64..4f673f9 100644 --- a/src/entity.h +++ b/src/entity.h @@ -5,7 +5,7 @@ #ifndef ENTITY_H #define ENTITY_H -#define ENTITY_COUNT 7 +#define ENTITY_COUNT 8 #define TREE_SCALE 40.0 #define BUSH_SCALE 8.0 @@ -17,6 +17,9 @@ #define UTILITY_POLE_HEIGHT 100.0 #define UTILITY_POLE_RADIUS 3.0 +#define SAMANTHAS_SPOT_SIZE 20.0 +#define SAMANTHAS_SPOT_HEIGHT 5.0 + typedef int8_t EntityId; enum { @@ -27,7 +30,8 @@ enum { BUSH, FLOWER, POND, - UTILITY_POLE + UTILITY_POLE, + SAMANTHAS_SPOT }; typedef struct { |