| 1578 | } |
| 1579 | |
| 1580 | Maybe<int> WorldEntityCallbacks::containerSize(World* world, EntityId entityId) { |
| 1581 | if (auto container = world->get<ContainerObject>(entityId)) |
| 1582 | return container->containerSize(); |
| 1583 | |
| 1584 | return {}; |
| 1585 | } |
| 1586 | |
| 1587 | bool WorldEntityCallbacks::containerClose(World* world, EntityId entityId) { |
| 1588 | if (auto container = world->get<ContainerObject>(entityId)) { |
no outgoing calls
no test coverage detected