diff options
author | nathan <nathansmith@disroot.org> | 2025-09-20 18:44:28 +0000 |
---|---|---|
committer | nathan <nathansmith@disroot.org> | 2025-09-20 18:44:28 +0000 |
commit | 382c97573213414ebdfee30743ba516e4feb7602 (patch) | |
tree | 8246203253a9d8ddbdc0e51bfcbfaa613738d18c /src/world.h | |
parent | fa12453c89df76baa2294373a7a5b8e20801157c (diff) | |
download | FindThings-382c97573213414ebdfee30743ba516e4feb7602.tar.gz FindThings-382c97573213414ebdfee30743ba516e4feb7602.tar.bz2 FindThings-382c97573213414ebdfee30743ba516e4feb7602.zip |
Brain dead
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/world.h b/src/world.h index 338f935..79bb98e 100644 --- a/src/world.h +++ b/src/world.h @@ -8,7 +8,7 @@ #define WORLD_ENTITY_MAX 5001 #define WORLD_PLANT_COUNT 2500 #define WORLD_UTILITY_POLE_COUNT 25 -#define WORLD_PLACE_COUNT 1 +#define WORLD_PLACE_COUNT 2 #define WORLD_SIZE (Vector3){4096.0, 256.0, 4096.0} #define WORLD_IMAGE_WIDTH 512 @@ -32,9 +32,8 @@ #define PLACE_POND_WALKING_AREA 7 // Characters. -#define WORLD_CHARACTER_COUNT 1 +#define WORLD_CHARACTER_COUNT 0 -#define PLACE_SAMANTHAS_SPOT_SIZE 10 #define SAMANTHA_OFFSET (Vector3){0.0, 0.0, 2.0} // UID for anything in the world. @@ -43,7 +42,8 @@ typedef int Seed; // Places. enum { - PLACE_POND + PLACE_POND, + PLACE_SAMANTHAS_PLACE }; typedef struct BVHNode { |