elseware/src/ship/map/mod.rs
jake 220d3e7185
Some checks failed
continuous-integration/drone/push Build is failing
update exp tests with new map builder tech
2023-01-29 13:08:07 -07:00

13 lines
227 B
Rust

pub mod area;
pub mod enemy;
pub mod object;
pub mod variant;
pub mod maps;
// TODO: don't just forward everything to the module scope
pub use area::*;
pub use enemy::*;
pub use object::*;
pub use variant::*;
pub use maps::*;