tx2_core/
lib.rs

1pub mod component;
2pub mod entity;
3pub mod system;
4pub mod world;
5pub mod serialization;
6pub mod renderer;
7pub mod app;
8pub mod query;
9pub mod error;
10
11#[cfg(test)]
12mod tests;
13
14pub use entity::EntityId;
15pub use world::World;
16pub use app::App;
17pub use error::TX2Error;