![]() |
Flecs v4.1
A fast entity component system (ECS) for C & C++
|
Type that stores an entity id range. More...
#include <entity_ranges.h>
Public Attributes | |
| uint32_t | min |
| First id in range (inclusive). | |
| uint32_t | max |
| Last id in range (inclusive, 0 = unlimited). | |
| uint32_t | cur |
| Last issued id in range. | |
| ecs_vec_t | recycled |
| Recycled entity ids (vec<entity_t>). | |
Type that stores an entity id range.
Returned by ecs_entity_range_new(), used with ecs_entity_range_set().
Definition at line 26 of file entity_ranges.h.
| uint32_t ecs_entity_range_t::cur |
Last issued id in range.
Definition at line 29 of file entity_ranges.h.
| uint32_t ecs_entity_range_t::max |
Last id in range (inclusive, 0 = unlimited).
Definition at line 28 of file entity_ranges.h.
| uint32_t ecs_entity_range_t::min |
First id in range (inclusive).
Definition at line 27 of file entity_ranges.h.
| ecs_vec_t ecs_entity_range_t::recycled |
Recycled entity ids (vec<entity_t>).
Definition at line 30 of file entity_ranges.h.