Fixed app being it's own git repo

This commit is contained in:
2025-12-23 23:55:53 +01:00
parent 506071784f
commit 0f81fcc905
4 changed files with 5598 additions and 1 deletions

7
app/src/main.rs Normal file
View File

@@ -0,0 +1,7 @@
use bevy::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.run();
}