Init the bevy project

This commit is contained in:
2025-03-12 19:01:18 +01:00
parent 3af452b89a
commit 468c75dd1c
3 changed files with 20 additions and 0 deletions

7
src/main.rs Normal file
View File

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