|
| #define | ecs_table_get(world, table, T, offset) (ECS_CAST(T*, ecs_table_get_id(world, table, ecs_id(T), offset))) |
| | Get a component from a table at an offset.
|
| |
| #define | ecs_table_get_pair(world, table, First, second, offset) (ECS_CAST(First*, ecs_table_get_id(world, table, ecs_pair(ecs_id(First), second), offset))) |
| | Get the first element of a pair from a table at an offset.
|
| |
| #define | ecs_table_get_pair_second(world, table, first, Second, offset) (ECS_CAST(Second*, ecs_table_get_id(world, table, ecs_pair(first, ecs_id(Second)), offset))) |
| | Get the second element of a pair from a table at an offset.
|
| |