diff options
author | nathan <nathansmith@disroot.org> | 2025-07-25 07:57:49 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-07-25 07:57:49 +0000 |
commit | c65787ebfc5f0701bb4366ef22cddc8af2d243ee (patch) | |
tree | 4de559bb7a77994c6e39adffb95edeeeb3d3a07a /src/entity.h | |
parent | f96ad3c93b9a5a74d2af2e9b8b4835a672a9875b (diff) | |
download | FindThings-c65787ebfc5f0701bb4366ef22cddc8af2d243ee.tar.gz FindThings-c65787ebfc5f0701bb4366ef22cddc8af2d243ee.tar.bz2 FindThings-c65787ebfc5f0701bb4366ef22cddc8af2d243ee.zip |
More tree things
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 11dbde9..38f4092 100644 --- a/src/entity.h +++ b/src/entity.h @@ -7,12 +7,16 @@ typedef int8_t EntityId; -#define ENTITY_COUNT 2 +#define ENTITY_COUNT 3 + +// Constants for entities. +#define TREE_SCALE 32.0 enum { ENTITY_NONE = -1, OLD_MINT, - STICKY_NICKEL + STICKY_NICKEL, + TREE }; typedef struct { |