Plugin for ships

This commit is contained in:
Rendo 2025-11-15 10:36:21 +05:00
commit 1a11e0d670
3 changed files with 12 additions and 2 deletions

View file

@ -1,2 +1,10 @@
use bevy::prelude::*;
pub mod enemy;
pub mod player;
pub struct ShipsPlugin;
impl Plugin for ShipsPlugin {
fn build(&self, app: &mut bevy::app::App) {}
}