diff --git a/ria-weekend/.gitignore b/.gitignore similarity index 100% rename from ria-weekend/.gitignore rename to .gitignore diff --git a/ria-weekend/Cargo.lock b/Cargo.lock similarity index 100% rename from ria-weekend/Cargo.lock rename to Cargo.lock diff --git a/ria-weekend/Cargo.toml b/Cargo.toml similarity index 100% rename from ria-weekend/Cargo.toml rename to Cargo.toml diff --git a/ria-weekend/src/camera.rs b/src/camera.rs similarity index 100% rename from ria-weekend/src/camera.rs rename to src/camera.rs diff --git a/ria-weekend/src/demos/diffuse_materials.rs b/src/demos/diffuse_materials.rs similarity index 100% rename from ria-weekend/src/demos/diffuse_materials.rs rename to src/demos/diffuse_materials.rs diff --git a/ria-weekend/src/demos/hitable_sphere.rs b/src/demos/hitable_sphere.rs similarity index 100% rename from ria-weekend/src/demos/hitable_sphere.rs rename to src/demos/hitable_sphere.rs diff --git a/ria-weekend/src/demos/linear_gradient_rectangle.rs b/src/demos/linear_gradient_rectangle.rs similarity index 100% rename from ria-weekend/src/demos/linear_gradient_rectangle.rs rename to src/demos/linear_gradient_rectangle.rs diff --git a/ria-weekend/src/demos/mod.rs b/src/demos/mod.rs similarity index 100% rename from ria-weekend/src/demos/mod.rs rename to src/demos/mod.rs diff --git a/ria-weekend/src/demos/simple_antialiasing.rs b/src/demos/simple_antialiasing.rs similarity index 100% rename from ria-weekend/src/demos/simple_antialiasing.rs rename to src/demos/simple_antialiasing.rs diff --git a/ria-weekend/src/demos/simple_rectangle.rs b/src/demos/simple_rectangle.rs similarity index 100% rename from ria-weekend/src/demos/simple_rectangle.rs rename to src/demos/simple_rectangle.rs diff --git a/ria-weekend/src/demos/simple_sphere.rs b/src/demos/simple_sphere.rs similarity index 100% rename from ria-weekend/src/demos/simple_sphere.rs rename to src/demos/simple_sphere.rs diff --git a/ria-weekend/src/demos/surface_normal_sphere.rs b/src/demos/surface_normal_sphere.rs similarity index 100% rename from ria-weekend/src/demos/surface_normal_sphere.rs rename to src/demos/surface_normal_sphere.rs diff --git a/ria-weekend/src/main.rs b/src/main.rs similarity index 100% rename from ria-weekend/src/main.rs rename to src/main.rs diff --git a/ria-weekend/src/types/hitable.rs b/src/types/hitable.rs similarity index 100% rename from ria-weekend/src/types/hitable.rs rename to src/types/hitable.rs diff --git a/ria-weekend/src/types/hitable_list.rs b/src/types/hitable_list.rs similarity index 100% rename from ria-weekend/src/types/hitable_list.rs rename to src/types/hitable_list.rs diff --git a/ria-weekend/src/types/mod.rs b/src/types/mod.rs similarity index 100% rename from ria-weekend/src/types/mod.rs rename to src/types/mod.rs diff --git a/ria-weekend/src/types/ray.rs b/src/types/ray.rs similarity index 100% rename from ria-weekend/src/types/ray.rs rename to src/types/ray.rs diff --git a/ria-weekend/src/types/sphere.rs b/src/types/sphere.rs similarity index 100% rename from ria-weekend/src/types/sphere.rs rename to src/types/sphere.rs diff --git a/ria-weekend/src/types/vec3.rs b/src/types/vec3.rs similarity index 100% rename from ria-weekend/src/types/vec3.rs rename to src/types/vec3.rs