mirror of
https://github.com/kristoferssolo/maze-ascension.git
synced 2025-10-21 19:20:34 +00:00
13 lines
237 B
Rust
13 lines
237 B
Rust
pub mod common;
|
|
pub mod event_handler;
|
|
pub mod setup;
|
|
pub mod spawn;
|
|
pub mod update;
|
|
|
|
use bevy::prelude::*;
|
|
use event_handler::handle_maze_events;
|
|
|
|
pub(super) fn plugin(app: &mut App) {
|
|
app.add_systems(Update, handle_maze_events);
|
|
}
|