initial bevy

This commit is contained in:
2026-08-10 23:18:53 -05:00
commit 962ba52e8e
4 changed files with 6057 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
use bevy::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_systems(Startup, setup)
.run();
}
fn setup(mut commands: Commands) {
commands.spawn(Camera2d);
}