From 6f23a32b40b145b094cfa736ad8901cc7b1a97c2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= <gustav@sornas.net>
Date: Fri, 10 Jan 2025 15:24:11 +0100
Subject: [PATCH] rename to diorama

---
 {the-gay-cottage => diorama}/.gitignore                      | 0
 {the-gay-cottage => diorama}/Cargo.lock                      | 0
 {the-gay-cottage => diorama}/Cargo.toml                      | 0
 {the-gay-cottage => diorama}/src/fragment.glsl               | 0
 {the-gay-cottage => diorama}/src/house.rs                    | 0
 {the-gay-cottage => diorama}/src/main.rs                     | 0
 {the-gay-cottage => diorama}/src/particles/compute.glsl      | 0
 {the-gay-cottage => diorama}/src/particles/fragment.glsl     | 0
 {the-gay-cottage => diorama}/src/particles/mod.rs            | 0
 {the-gay-cottage => diorama}/src/particles/snow_compute.glsl | 0
 {the-gay-cottage => diorama}/src/particles/vertex.glsl       | 0
 {the-gay-cottage => diorama}/src/shadows/mod.rs              | 0
 {the-gay-cottage => diorama}/src/shadows/shadow_frag.glsl    | 0
 {the-gay-cottage => diorama}/src/shadows/shadow_vert.glsl    | 0
 {the-gay-cottage => diorama}/src/stylized_nature/mod.rs      | 0
 {the-gay-cottage => diorama}/src/terrain/mod.rs              | 0
 {the-gay-cottage => diorama}/src/terrain/terrain.fs          | 0
 {the-gay-cottage => diorama}/src/terrain/terrain.vs          | 0
 {the-gay-cottage => diorama}/src/tree/mod.rs                 | 0
 {the-gay-cottage => diorama}/src/tree/shadow_tree.frag       | 0
 {the-gay-cottage => diorama}/src/tree/shadow_tree.geo        | 0
 {the-gay-cottage => diorama}/src/tree/shadow_tree.vert       | 0
 {the-gay-cottage => diorama}/src/tree/tree.frag              | 0
 {the-gay-cottage => diorama}/src/tree/tree.geo               | 0
 {the-gay-cottage => diorama}/src/tree/tree.vert              | 0
 {the-gay-cottage => diorama}/src/vertex.glsl                 | 0
 {the-gay-cottage => diorama}/src/water/mod.rs                | 0
 {the-gay-cottage => diorama}/src/water/shadow_water.fs       | 0
 {the-gay-cottage => diorama}/src/water/shadow_water.vs       | 0
 {the-gay-cottage => diorama}/src/water/water.fs              | 0
 {the-gay-cottage => diorama}/src/water/water.gs              | 0
 {the-gay-cottage => diorama}/src/water/water.vs              | 0
 32 files changed, 0 insertions(+), 0 deletions(-)
 rename {the-gay-cottage => diorama}/.gitignore (100%)
 rename {the-gay-cottage => diorama}/Cargo.lock (100%)
 rename {the-gay-cottage => diorama}/Cargo.toml (100%)
 rename {the-gay-cottage => diorama}/src/fragment.glsl (100%)
 rename {the-gay-cottage => diorama}/src/house.rs (100%)
 rename {the-gay-cottage => diorama}/src/main.rs (100%)
 rename {the-gay-cottage => diorama}/src/particles/compute.glsl (100%)
 rename {the-gay-cottage => diorama}/src/particles/fragment.glsl (100%)
 rename {the-gay-cottage => diorama}/src/particles/mod.rs (100%)
 rename {the-gay-cottage => diorama}/src/particles/snow_compute.glsl (100%)
 rename {the-gay-cottage => diorama}/src/particles/vertex.glsl (100%)
 rename {the-gay-cottage => diorama}/src/shadows/mod.rs (100%)
 rename {the-gay-cottage => diorama}/src/shadows/shadow_frag.glsl (100%)
 rename {the-gay-cottage => diorama}/src/shadows/shadow_vert.glsl (100%)
 rename {the-gay-cottage => diorama}/src/stylized_nature/mod.rs (100%)
 rename {the-gay-cottage => diorama}/src/terrain/mod.rs (100%)
 rename {the-gay-cottage => diorama}/src/terrain/terrain.fs (100%)
 rename {the-gay-cottage => diorama}/src/terrain/terrain.vs (100%)
 rename {the-gay-cottage => diorama}/src/tree/mod.rs (100%)
 rename {the-gay-cottage => diorama}/src/tree/shadow_tree.frag (100%)
 rename {the-gay-cottage => diorama}/src/tree/shadow_tree.geo (100%)
 rename {the-gay-cottage => diorama}/src/tree/shadow_tree.vert (100%)
 rename {the-gay-cottage => diorama}/src/tree/tree.frag (100%)
 rename {the-gay-cottage => diorama}/src/tree/tree.geo (100%)
 rename {the-gay-cottage => diorama}/src/tree/tree.vert (100%)
 rename {the-gay-cottage => diorama}/src/vertex.glsl (100%)
 rename {the-gay-cottage => diorama}/src/water/mod.rs (100%)
 rename {the-gay-cottage => diorama}/src/water/shadow_water.fs (100%)
 rename {the-gay-cottage => diorama}/src/water/shadow_water.vs (100%)
 rename {the-gay-cottage => diorama}/src/water/water.fs (100%)
 rename {the-gay-cottage => diorama}/src/water/water.gs (100%)
 rename {the-gay-cottage => diorama}/src/water/water.vs (100%)

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
-- 
GitLab