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
use super::*;
pub type TickSource = crate::sys::EcsTickSource;
impl_component_traits_binding_type_w_id!(TickSource, ECS_TICK_SOURCE);

create_pre_registered_component!(System, ECS_SYSTEM);

create_component_trait!(
    DependsOn,
    ECS_DEPENDS_ON,
    "Builtin relationship. Used to determine the execution order of systems."
);