maze-ascension/src/maze/mod.rs
2024-11-04 20:37:25 +02:00

12 lines
217 B
Rust

use bevy::{ecs::world::Command, prelude::*};
use plugin::MazePlugin;
pub mod grid;
pub mod plugin;
pub mod prism;
pub mod resource;
pub mod tile;
pub fn spawn_grid(world: &mut World) {
MazePlugin.apply(world);
}