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
14
15
//! Contains types that represents components and a fast mechanism for caching access to them from an entity.

mod cached_ref;
mod component;
mod component_binding;
mod component_untyped;
#[doc(hidden)]
pub mod lifecycle_traits;

pub use cached_ref::*;
pub use component::*;
pub(crate) use component_binding::*;
pub use component_untyped::*;
#[doc(hidden)]
pub use lifecycle_traits::*;