diff --git a/the-gay-cottage/.gitignore b/diorama/.gitignore similarity index 100% rename from the-gay-cottage/.gitignore rename to diorama/.gitignore diff --git a/the-gay-cottage/Cargo.lock b/diorama/Cargo.lock similarity index 100% rename from the-gay-cottage/Cargo.lock rename to diorama/Cargo.lock diff --git a/the-gay-cottage/Cargo.toml b/diorama/Cargo.toml similarity index 100% rename from the-gay-cottage/Cargo.toml rename to diorama/Cargo.toml diff --git a/the-gay-cottage/src/fragment.glsl b/diorama/src/fragment.glsl similarity index 100% rename from the-gay-cottage/src/fragment.glsl rename to diorama/src/fragment.glsl diff --git a/the-gay-cottage/src/house.rs b/diorama/src/house.rs similarity index 100% rename from the-gay-cottage/src/house.rs rename to diorama/src/house.rs diff --git a/the-gay-cottage/src/main.rs b/diorama/src/main.rs similarity index 100% rename from the-gay-cottage/src/main.rs rename to diorama/src/main.rs diff --git a/the-gay-cottage/src/particles/compute.glsl b/diorama/src/particles/compute.glsl similarity index 100% rename from the-gay-cottage/src/particles/compute.glsl rename to diorama/src/particles/compute.glsl diff --git a/the-gay-cottage/src/particles/fragment.glsl b/diorama/src/particles/fragment.glsl similarity index 100% rename from the-gay-cottage/src/particles/fragment.glsl rename to diorama/src/particles/fragment.glsl diff --git a/the-gay-cottage/src/particles/mod.rs b/diorama/src/particles/mod.rs similarity index 100% rename from the-gay-cottage/src/particles/mod.rs rename to diorama/src/particles/mod.rs diff --git a/the-gay-cottage/src/particles/snow_compute.glsl b/diorama/src/particles/snow_compute.glsl similarity index 100% rename from the-gay-cottage/src/particles/snow_compute.glsl rename to diorama/src/particles/snow_compute.glsl diff --git a/the-gay-cottage/src/particles/vertex.glsl b/diorama/src/particles/vertex.glsl similarity index 100% rename from the-gay-cottage/src/particles/vertex.glsl rename to diorama/src/particles/vertex.glsl diff --git a/the-gay-cottage/src/shadows/mod.rs b/diorama/src/shadows/mod.rs similarity index 100% rename from the-gay-cottage/src/shadows/mod.rs rename to diorama/src/shadows/mod.rs diff --git a/the-gay-cottage/src/shadows/shadow_frag.glsl b/diorama/src/shadows/shadow_frag.glsl similarity index 100% rename from the-gay-cottage/src/shadows/shadow_frag.glsl rename to diorama/src/shadows/shadow_frag.glsl diff --git a/the-gay-cottage/src/shadows/shadow_vert.glsl b/diorama/src/shadows/shadow_vert.glsl similarity index 100% rename from the-gay-cottage/src/shadows/shadow_vert.glsl rename to diorama/src/shadows/shadow_vert.glsl diff --git a/the-gay-cottage/src/stylized_nature/mod.rs b/diorama/src/stylized_nature/mod.rs similarity index 100% rename from the-gay-cottage/src/stylized_nature/mod.rs rename to diorama/src/stylized_nature/mod.rs diff --git a/the-gay-cottage/src/terrain/mod.rs b/diorama/src/terrain/mod.rs similarity index 100% rename from the-gay-cottage/src/terrain/mod.rs rename to diorama/src/terrain/mod.rs diff --git a/the-gay-cottage/src/terrain/terrain.fs b/diorama/src/terrain/terrain.fs similarity index 100% rename from the-gay-cottage/src/terrain/terrain.fs rename to diorama/src/terrain/terrain.fs diff --git a/the-gay-cottage/src/terrain/terrain.vs b/diorama/src/terrain/terrain.vs similarity index 100% rename from the-gay-cottage/src/terrain/terrain.vs rename to diorama/src/terrain/terrain.vs diff --git a/the-gay-cottage/src/tree/mod.rs b/diorama/src/tree/mod.rs similarity index 100% rename from the-gay-cottage/src/tree/mod.rs rename to diorama/src/tree/mod.rs diff --git a/the-gay-cottage/src/tree/shadow_tree.frag b/diorama/src/tree/shadow_tree.frag similarity index 100% rename from the-gay-cottage/src/tree/shadow_tree.frag rename to diorama/src/tree/shadow_tree.frag diff --git a/the-gay-cottage/src/tree/shadow_tree.geo b/diorama/src/tree/shadow_tree.geo similarity index 100% rename from the-gay-cottage/src/tree/shadow_tree.geo rename to diorama/src/tree/shadow_tree.geo diff --git a/the-gay-cottage/src/tree/shadow_tree.vert b/diorama/src/tree/shadow_tree.vert similarity index 100% rename from the-gay-cottage/src/tree/shadow_tree.vert rename to diorama/src/tree/shadow_tree.vert diff --git a/the-gay-cottage/src/tree/tree.frag b/diorama/src/tree/tree.frag similarity index 100% rename from the-gay-cottage/src/tree/tree.frag rename to diorama/src/tree/tree.frag diff --git a/the-gay-cottage/src/tree/tree.geo b/diorama/src/tree/tree.geo similarity index 100% rename from the-gay-cottage/src/tree/tree.geo rename to diorama/src/tree/tree.geo diff --git a/the-gay-cottage/src/tree/tree.vert b/diorama/src/tree/tree.vert similarity index 100% rename from the-gay-cottage/src/tree/tree.vert rename to diorama/src/tree/tree.vert diff --git a/the-gay-cottage/src/vertex.glsl b/diorama/src/vertex.glsl similarity index 100% rename from the-gay-cottage/src/vertex.glsl rename to diorama/src/vertex.glsl diff --git a/the-gay-cottage/src/water/mod.rs b/diorama/src/water/mod.rs similarity index 100% rename from the-gay-cottage/src/water/mod.rs rename to diorama/src/water/mod.rs diff --git a/the-gay-cottage/src/water/shadow_water.fs b/diorama/src/water/shadow_water.fs similarity index 100% rename from the-gay-cottage/src/water/shadow_water.fs rename to diorama/src/water/shadow_water.fs diff --git a/the-gay-cottage/src/water/shadow_water.vs b/diorama/src/water/shadow_water.vs similarity index 100% rename from the-gay-cottage/src/water/shadow_water.vs rename to diorama/src/water/shadow_water.vs diff --git a/the-gay-cottage/src/water/water.fs b/diorama/src/water/water.fs similarity index 100% rename from the-gay-cottage/src/water/water.fs rename to diorama/src/water/water.fs diff --git a/the-gay-cottage/src/water/water.gs b/diorama/src/water/water.gs similarity index 100% rename from the-gay-cottage/src/water/water.gs rename to diorama/src/water/water.gs diff --git a/the-gay-cottage/src/water/water.vs b/diorama/src/water/water.vs similarity index 100% rename from the-gay-cottage/src/water/water.vs rename to diorama/src/water/water.vs