From 22d0256ceac0cc40716072bb8ac9a5db373d224a Mon Sep 17 00:00:00 2001 From: Elias Stepanik Date: Sun, 23 Mar 2025 22:44:59 +0100 Subject: [PATCH] Setup 4 --- .../ISSUE_TEMPLATE/bug_report.md | 0 .../.github => .github}/ISSUE_TEMPLATE/config.yml | 0 .../ISSUE_TEMPLATE/feature_request.md | 0 .../.github => .github}/PULL_REQUEST_TEMPLATE.md | 0 {template/.github => .github}/dependabot.yml | 0 {template/.github => .github}/workflows/audit.yml | 0 {template/.github => .github}/workflows/cd.yml | 0 {template/.github => .github}/workflows/ci.yml | 0 template/.gitignore => .gitignore | 0 template/CODE_OF_CONDUCT.md => CODE_OF_CONDUCT.md | 0 template/CONTRIBUTING.md => CONTRIBUTING.md | 0 template/Cargo.toml => Cargo.toml | 0 template/LICENSE-APACHE.txt => LICENSE-APACHE.txt | 0 template/LICENSE-MIT.txt => LICENSE-MIT.txt | 0 template/README.md => README.md | 0 .../assets => assets}/fonts/minecraft_font.ttf | Bin template/cargo-generate.toml => cargo-generate.toml | 0 {template/src => src}/app.rs | 0 {template/src => src}/helper/debug_gizmos.rs | 0 {template/src => src}/helper/egui_dock.rs | 0 {template/src => src}/helper/mod.rs | 0 {template/src => src}/main.rs | 0 .../src => src}/plugins/camera/camera_plugin.rs | 0 {template/src => src}/plugins/camera/mod.rs | 0 .../plugins/camera/systems/camera_system.rs | 0 {template/src => src}/plugins/camera/systems/mod.rs | 0 .../plugins/environment/environment_plugin.rs | 0 {template/src => src}/plugins/environment/mod.rs | 0 .../environment/systems/environment_system.rs | 0 .../src => src}/plugins/environment/systems/mod.rs | 0 {template/src => src}/plugins/mod.rs | 0 {template/src => src}/plugins/ui/mod.rs | 0 {template/src => src}/plugins/ui/systems/mod.rs | 0 .../src => src}/plugins/ui/systems/ui_system.rs | 0 {template/src => src}/plugins/ui/ui_plugin.rs | 0 35 files changed, 0 insertions(+), 0 deletions(-) rename {template/.github => .github}/ISSUE_TEMPLATE/bug_report.md (100%) rename {template/.github => .github}/ISSUE_TEMPLATE/config.yml (100%) rename {template/.github => .github}/ISSUE_TEMPLATE/feature_request.md (100%) rename {template/.github => .github}/PULL_REQUEST_TEMPLATE.md (100%) rename {template/.github => .github}/dependabot.yml (100%) rename {template/.github => .github}/workflows/audit.yml (100%) rename {template/.github => .github}/workflows/cd.yml (100%) rename {template/.github => .github}/workflows/ci.yml (100%) rename template/.gitignore => .gitignore (100%) rename template/CODE_OF_CONDUCT.md => CODE_OF_CONDUCT.md (100%) rename template/CONTRIBUTING.md => CONTRIBUTING.md (100%) rename template/Cargo.toml => Cargo.toml (100%) rename template/LICENSE-APACHE.txt => LICENSE-APACHE.txt (100%) rename template/LICENSE-MIT.txt => LICENSE-MIT.txt (100%) rename template/README.md => README.md (100%) rename {template/assets => assets}/fonts/minecraft_font.ttf (100%) rename template/cargo-generate.toml => cargo-generate.toml (100%) rename {template/src => src}/app.rs (100%) rename {template/src => src}/helper/debug_gizmos.rs (100%) rename {template/src => src}/helper/egui_dock.rs (100%) rename {template/src => src}/helper/mod.rs (100%) rename {template/src => src}/main.rs (100%) rename {template/src => src}/plugins/camera/camera_plugin.rs (100%) rename {template/src => src}/plugins/camera/mod.rs (100%) rename {template/src => src}/plugins/camera/systems/camera_system.rs (100%) rename {template/src => src}/plugins/camera/systems/mod.rs (100%) rename {template/src => src}/plugins/environment/environment_plugin.rs (100%) rename {template/src => src}/plugins/environment/mod.rs (100%) rename {template/src => src}/plugins/environment/systems/environment_system.rs (100%) rename {template/src => src}/plugins/environment/systems/mod.rs (100%) rename {template/src => src}/plugins/mod.rs (100%) rename {template/src => src}/plugins/ui/mod.rs (100%) rename {template/src => src}/plugins/ui/systems/mod.rs (100%) rename {template/src => src}/plugins/ui/systems/ui_system.rs (100%) rename {template/src => src}/plugins/ui/ui_plugin.rs (100%) 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