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
8
9
10
//! `EntityViews` are wrappers around an [`Entity`][super::Entity] id with the world. It provides methods to build and interact with entities.

mod bulk_entity_builder;
mod entity_view_const;
mod entity_view_impl;
mod entity_view_mut;
mod macros;

pub use entity_view_const::EntityView;
pub use entity_view_const::EntityViewGet;