flecs_ecs 0.2.1

Rust API for the C/CPP flecs ECS library <https://github.com/SanderMertens/flecs>
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Contains types and traits that define what a component is and how it is registered.

mod helpers;
mod registration;
mod registration_traits;
pub mod registration_types;

pub(crate) use helpers::*;
#[doc(hidden)]
pub use registration::*;
pub use registration_traits::*;
#[doc(hidden)]
pub use registration_types::*;