Ship Controls

+ Refactoring
This commit is contained in:
2025-06-14 14:30:44 -04:00
parent a8f0793865
commit fa9f927f8c
16 changed files with 520 additions and 283 deletions

View File

@@ -1,7 +1,10 @@
mod plugins;
mod utils;
use bevy::{prelude::*, window::PresentMode};
use bevy_inspector_egui::{bevy_egui::EguiPlugin, quick::WorldInspectorPlugin};
use plugins::game::GamePlugin;
mod components;
mod resources;
fn main() {
App::new()
@@ -29,7 +32,7 @@ fn main() {
enable_multipass_for_primary_context: true,
},
WorldInspectorPlugin::new(),
GamePlugin::default(),
GamePlugin,
))
.run();
}