mirror of
https://github.com/kristoferssolo/maze-ascension.git
synced 2025-10-21 19:20:34 +00:00
10 lines
168 B
Rust
10 lines
168 B
Rust
mod components;
|
|
mod systems;
|
|
|
|
use bevy::prelude::*;
|
|
use components::Player;
|
|
|
|
pub(super) fn plugin(app: &mut App) {
|
|
app.register_type::<Player>().add_plugins(());
|
|
}
|