engine/entity_manager/src/lib.rs

14 lines
281 B
Rust
Raw Normal View History

2024-08-25 07:11:52 +00:00
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::*;