pub unsafe extern "C" fn ecs_dim(
world: *mut ecs_world_t,
entity_count: i32,
)Expand description
Dimension the world for a specified number of entities. This operation will preallocate memory in the world for the specified number of entities. Specifying a number lower than the current number of entities in the world will have no effect.
@param world The world. @param entity_count The number of entities to preallocate.