engine/entity_manager/src/lib.rs
2024-08-25 09:11:52 +02:00

13 lines
281 B
Rust

mod animation_info;
mod entity_info;
mod entity_manager;
mod entity_tags;
mod entityparser;
mod hitbox;
pub use animation_info::*;
pub use entity_info::EntityInfo;
pub use entity_manager::EntityManager;
pub use entity_tags::EntityTags;
pub use entityparser::*;
pub use hitbox::*;