tx2_core/
lib.rs

1pub mod component;
2pub mod entity;
3pub mod system;
4pub mod world;
5pub mod serialization;
6pub mod query;
7pub mod error;
8
9#[cfg(feature = "native")]
10pub mod renderer;
11
12#[cfg(feature = "native")]
13pub mod app;
14
15#[cfg(target_arch = "wasm32")]
16pub mod wasm;
17
18#[cfg(test)]
19mod tests;
20
21pub use entity::EntityId;
22pub use world::World;
23pub use error::TX2Error;
24
25#[cfg(feature = "native")]
26pub use app::App;