1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! this module contains all enemies pub mod common; pub use common::*; pub mod common_beast; pub use common_beast::*; pub mod egg; pub use egg::*; pub mod hatched_beast; pub use hatched_beast::*; pub mod super_beast; pub use super_beast::*;