diff --git a/template/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md similarity index 100% rename from template/.github/ISSUE_TEMPLATE/bug_report.md rename to .github/ISSUE_TEMPLATE/bug_report.md diff --git a/template/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml similarity index 100% rename from template/.github/ISSUE_TEMPLATE/config.yml rename to .github/ISSUE_TEMPLATE/config.yml diff --git a/template/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from template/.github/ISSUE_TEMPLATE/feature_request.md rename to .github/ISSUE_TEMPLATE/feature_request.md diff --git a/template/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from template/.github/PULL_REQUEST_TEMPLATE.md rename to .github/PULL_REQUEST_TEMPLATE.md diff --git a/template/.github/dependabot.yml b/.github/dependabot.yml similarity index 100% rename from template/.github/dependabot.yml rename to .github/dependabot.yml diff --git a/template/.github/workflows/audit.yml b/.github/workflows/audit.yml similarity index 100% rename from template/.github/workflows/audit.yml rename to .github/workflows/audit.yml diff --git a/template/.github/workflows/cd.yml b/.github/workflows/cd.yml similarity index 100% rename from template/.github/workflows/cd.yml rename to .github/workflows/cd.yml diff --git a/template/.github/workflows/ci.yml b/.github/workflows/ci.yml similarity index 100% rename from template/.github/workflows/ci.yml rename to .github/workflows/ci.yml diff --git a/template/.gitignore b/.gitignore similarity index 100% rename from template/.gitignore rename to .gitignore diff --git a/template/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md similarity index 100% rename from template/CODE_OF_CONDUCT.md rename to CODE_OF_CONDUCT.md diff --git a/template/CONTRIBUTING.md b/CONTRIBUTING.md similarity index 100% rename from template/CONTRIBUTING.md rename to CONTRIBUTING.md diff --git a/template/Cargo.toml b/Cargo.toml similarity index 100% rename from template/Cargo.toml rename to Cargo.toml diff --git a/template/LICENSE-APACHE.txt b/LICENSE-APACHE.txt similarity index 100% rename from template/LICENSE-APACHE.txt rename to LICENSE-APACHE.txt diff --git a/template/LICENSE-MIT.txt b/LICENSE-MIT.txt similarity index 100% rename from template/LICENSE-MIT.txt rename to LICENSE-MIT.txt diff --git a/template/README.md b/README.md similarity index 100% rename from template/README.md rename to README.md diff --git a/template/assets/fonts/minecraft_font.ttf b/assets/fonts/minecraft_font.ttf similarity index 100% rename from template/assets/fonts/minecraft_font.ttf rename to assets/fonts/minecraft_font.ttf diff --git a/template/cargo-generate.toml b/cargo-generate.toml similarity index 100% rename from template/cargo-generate.toml rename to cargo-generate.toml diff --git a/template/src/app.rs b/src/app.rs similarity index 100% rename from template/src/app.rs rename to src/app.rs diff --git a/template/src/helper/debug_gizmos.rs b/src/helper/debug_gizmos.rs similarity index 100% rename from template/src/helper/debug_gizmos.rs rename to src/helper/debug_gizmos.rs diff --git a/template/src/helper/egui_dock.rs b/src/helper/egui_dock.rs similarity index 100% rename from template/src/helper/egui_dock.rs rename to src/helper/egui_dock.rs diff --git a/template/src/helper/mod.rs b/src/helper/mod.rs similarity index 100% rename from template/src/helper/mod.rs rename to src/helper/mod.rs diff --git a/template/src/main.rs b/src/main.rs similarity index 100% rename from template/src/main.rs rename to src/main.rs diff --git a/template/src/plugins/camera/camera_plugin.rs b/src/plugins/camera/camera_plugin.rs similarity index 100% rename from template/src/plugins/camera/camera_plugin.rs rename to src/plugins/camera/camera_plugin.rs diff --git a/template/src/plugins/camera/mod.rs b/src/plugins/camera/mod.rs similarity index 100% rename from template/src/plugins/camera/mod.rs rename to src/plugins/camera/mod.rs diff --git a/template/src/plugins/camera/systems/camera_system.rs b/src/plugins/camera/systems/camera_system.rs similarity index 100% rename from template/src/plugins/camera/systems/camera_system.rs rename to src/plugins/camera/systems/camera_system.rs diff --git a/template/src/plugins/camera/systems/mod.rs b/src/plugins/camera/systems/mod.rs similarity index 100% rename from template/src/plugins/camera/systems/mod.rs rename to src/plugins/camera/systems/mod.rs diff --git a/template/src/plugins/environment/environment_plugin.rs b/src/plugins/environment/environment_plugin.rs similarity index 100% rename from template/src/plugins/environment/environment_plugin.rs rename to src/plugins/environment/environment_plugin.rs diff --git a/template/src/plugins/environment/mod.rs b/src/plugins/environment/mod.rs similarity index 100% rename from template/src/plugins/environment/mod.rs rename to src/plugins/environment/mod.rs diff --git a/template/src/plugins/environment/systems/environment_system.rs b/src/plugins/environment/systems/environment_system.rs similarity index 100% rename from template/src/plugins/environment/systems/environment_system.rs rename to src/plugins/environment/systems/environment_system.rs diff --git a/template/src/plugins/environment/systems/mod.rs b/src/plugins/environment/systems/mod.rs similarity index 100% rename from template/src/plugins/environment/systems/mod.rs rename to src/plugins/environment/systems/mod.rs diff --git a/template/src/plugins/mod.rs b/src/plugins/mod.rs similarity index 100% rename from template/src/plugins/mod.rs rename to src/plugins/mod.rs diff --git a/template/src/plugins/ui/mod.rs b/src/plugins/ui/mod.rs similarity index 100% rename from template/src/plugins/ui/mod.rs rename to src/plugins/ui/mod.rs diff --git a/template/src/plugins/ui/systems/mod.rs b/src/plugins/ui/systems/mod.rs similarity index 100% rename from template/src/plugins/ui/systems/mod.rs rename to src/plugins/ui/systems/mod.rs diff --git a/template/src/plugins/ui/systems/ui_system.rs b/src/plugins/ui/systems/ui_system.rs similarity index 100% rename from template/src/plugins/ui/systems/ui_system.rs rename to src/plugins/ui/systems/ui_system.rs diff --git a/template/src/plugins/ui/ui_plugin.rs b/src/plugins/ui/ui_plugin.rs similarity index 100% rename from template/src/plugins/ui/ui_plugin.rs rename to src/plugins/ui/ui_plugin.rs