flecs_ecs 0.2.2

Rust API for the C/CPP flecs ECS library <https://github.com/SanderMertens/flecs>
Documentation
1
2
3
4
5
6
7
#![doc(hidden)]

pub trait Builder<'a> {
    type BuiltType;

    fn build(&mut self) -> Self::BuiltType;
}