mirror of
https://github.com/kristoferssolo/maze-ascension.git
synced 2025-10-21 19:20:34 +00:00
11 lines
226 B
Rust
11 lines
226 B
Rust
use bevy::prelude::*;
|
|
|
|
use super::components::MazeConfig;
|
|
|
|
#[derive(Debug, Event)]
|
|
pub enum MazeEvent {
|
|
Create { floor: u8, config: MazeConfig },
|
|
Recreate { floor: u8, config: MazeConfig },
|
|
Remove { floor: u8 },
|
|
}
|