pub mod behavior;
pub mod infrastructure;
pub mod military;
pub mod npc;
pub mod player;
pub mod resources;
pub mod prelude {
pub use super::behavior::*;
pub use super::infrastructure::*;
pub use super::military::*;
pub use super::npc::*;
pub use super::player::*;
pub use super::resources::*;
}