From daaa6e9f166087d38e472d36610bf51a224058cd Mon Sep 17 00:00:00 2001
From: Dominic Masters <dominic@domsplace.com>
Date: Sun, 16 May 2021 17:51:46 -0700
Subject: [PATCH] Disconnected world code temporarily.

---
 include/dawn/dawn.h                                  | 9 +--------
 {include/dawn => temp/include}/world/entity/entity.h | 0
 {include/dawn => temp/include}/world/map/chunk.h     | 0
 {include/dawn => temp/include}/world/map/map.h       | 0
 {include/dawn => temp/include}/world/map/tile.h      | 0
 {include/dawn => temp/include}/world/world.h         | 0
 {src => temp/src}/world/entity/common.c              | 0
 {src => temp/src}/world/entity/common.h              | 0
 {src => temp/src}/world/entity/entities/player.c     | 0
 {src => temp/src}/world/entity/entities/player.h     | 0
 {src => temp/src}/world/entity/entity.c              | 0
 {src => temp/src}/world/entity/entity.h              | 0
 {src => temp/src}/world/entity/entitytypes.c         | 0
 {src => temp/src}/world/entity/entitytypes.h         | 0
 {src => temp/src}/world/map/chunk.c                  | 0
 {src => temp/src}/world/map/chunk.h                  | 0
 {src => temp/src}/world/map/map.c                    | 0
 {src => temp/src}/world/map/map.h                    | 0
 {src => temp/src}/world/map/tile.c                   | 0
 {src => temp/src}/world/map/tile.h                   | 0
 {src => temp/src}/world/world.c                      | 0
 {src => temp/src}/world/world.h                      | 0
 22 files changed, 1 insertion(+), 8 deletions(-)
 rename {include/dawn => temp/include}/world/entity/entity.h (100%)
 rename {include/dawn => temp/include}/world/map/chunk.h (100%)
 rename {include/dawn => temp/include}/world/map/map.h (100%)
 rename {include/dawn => temp/include}/world/map/tile.h (100%)
 rename {include/dawn => temp/include}/world/world.h (100%)
 rename {src => temp/src}/world/entity/common.c (100%)
 rename {src => temp/src}/world/entity/common.h (100%)
 rename {src => temp/src}/world/entity/entities/player.c (100%)
 rename {src => temp/src}/world/entity/entities/player.h (100%)
 rename {src => temp/src}/world/entity/entity.c (100%)
 rename {src => temp/src}/world/entity/entity.h (100%)
 rename {src => temp/src}/world/entity/entitytypes.c (100%)
 rename {src => temp/src}/world/entity/entitytypes.h (100%)
 rename {src => temp/src}/world/map/chunk.c (100%)
 rename {src => temp/src}/world/map/chunk.h (100%)
 rename {src => temp/src}/world/map/map.c (100%)
 rename {src => temp/src}/world/map/map.h (100%)
 rename {src => temp/src}/world/map/tile.c (100%)
 rename {src => temp/src}/world/map/tile.h (100%)
 rename {src => temp/src}/world/world.c (100%)
 rename {src => temp/src}/world/world.h (100%)

diff --git a/include/dawn/dawn.h b/include/dawn/dawn.h
index 4e5a5c11..f1a721b1 100644
--- a/include/dawn/dawn.h
+++ b/include/dawn/dawn.h
@@ -38,11 +38,4 @@
 // Utility Objects
 #include "util/list.h"
 #include "util/math.h"
-#include "util/rand.h"
-
-// 3D Tile Game World
-#include "world/entity/entity.h"
-#include "world/map/chunk.h"
-#include "world/map/map.h"
-#include "world/map/tile.h"
-#include "world/world.h"
\ No newline at end of file
+#include "util/rand.h"
\ No newline at end of file
diff --git a/include/dawn/world/entity/entity.h b/temp/include/world/entity/entity.h
similarity index 100%
rename from include/dawn/world/entity/entity.h
rename to temp/include/world/entity/entity.h
diff --git a/include/dawn/world/map/chunk.h b/temp/include/world/map/chunk.h
similarity index 100%
rename from include/dawn/world/map/chunk.h
rename to temp/include/world/map/chunk.h
diff --git a/include/dawn/world/map/map.h b/temp/include/world/map/map.h
similarity index 100%
rename from include/dawn/world/map/map.h
rename to temp/include/world/map/map.h
diff --git a/include/dawn/world/map/tile.h b/temp/include/world/map/tile.h
similarity index 100%
rename from include/dawn/world/map/tile.h
rename to temp/include/world/map/tile.h
diff --git a/include/dawn/world/world.h b/temp/include/world/world.h
similarity index 100%
rename from include/dawn/world/world.h
rename to temp/include/world/world.h
diff --git a/src/world/entity/common.c b/temp/src/world/entity/common.c
similarity index 100%
rename from src/world/entity/common.c
rename to temp/src/world/entity/common.c
diff --git a/src/world/entity/common.h b/temp/src/world/entity/common.h
similarity index 100%
rename from src/world/entity/common.h
rename to temp/src/world/entity/common.h
diff --git a/src/world/entity/entities/player.c b/temp/src/world/entity/entities/player.c
similarity index 100%
rename from src/world/entity/entities/player.c
rename to temp/src/world/entity/entities/player.c
diff --git a/src/world/entity/entities/player.h b/temp/src/world/entity/entities/player.h
similarity index 100%
rename from src/world/entity/entities/player.h
rename to temp/src/world/entity/entities/player.h
diff --git a/src/world/entity/entity.c b/temp/src/world/entity/entity.c
similarity index 100%
rename from src/world/entity/entity.c
rename to temp/src/world/entity/entity.c
diff --git a/src/world/entity/entity.h b/temp/src/world/entity/entity.h
similarity index 100%
rename from src/world/entity/entity.h
rename to temp/src/world/entity/entity.h
diff --git a/src/world/entity/entitytypes.c b/temp/src/world/entity/entitytypes.c
similarity index 100%
rename from src/world/entity/entitytypes.c
rename to temp/src/world/entity/entitytypes.c
diff --git a/src/world/entity/entitytypes.h b/temp/src/world/entity/entitytypes.h
similarity index 100%
rename from src/world/entity/entitytypes.h
rename to temp/src/world/entity/entitytypes.h
diff --git a/src/world/map/chunk.c b/temp/src/world/map/chunk.c
similarity index 100%
rename from src/world/map/chunk.c
rename to temp/src/world/map/chunk.c
diff --git a/src/world/map/chunk.h b/temp/src/world/map/chunk.h
similarity index 100%
rename from src/world/map/chunk.h
rename to temp/src/world/map/chunk.h
diff --git a/src/world/map/map.c b/temp/src/world/map/map.c
similarity index 100%
rename from src/world/map/map.c
rename to temp/src/world/map/map.c
diff --git a/src/world/map/map.h b/temp/src/world/map/map.h
similarity index 100%
rename from src/world/map/map.h
rename to temp/src/world/map/map.h
diff --git a/src/world/map/tile.c b/temp/src/world/map/tile.c
similarity index 100%
rename from src/world/map/tile.c
rename to temp/src/world/map/tile.c
diff --git a/src/world/map/tile.h b/temp/src/world/map/tile.h
similarity index 100%
rename from src/world/map/tile.h
rename to temp/src/world/map/tile.h
diff --git a/src/world/world.c b/temp/src/world/world.c
similarity index 100%
rename from src/world/world.c
rename to temp/src/world/world.c
diff --git a/src/world/world.h b/temp/src/world/world.h
similarity index 100%
rename from src/world/world.h
rename to temp/src/world/world.h