aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.h')
-rw-r--r--src/world.h8
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 {