| 47 | CALifeSimulator* alife() { return (const_cast<CALifeSimulator*>(ai().get_alife())); } |
| 48 | |
| 49 | CSE_ALifeDynamicObject* alife_object(const CALifeSimulator* self, ALife::_OBJECT_ID object_id) |
| 50 | { |
| 51 | VERIFY(self); |
| 52 | return (self->objects().object(object_id, true)); |
| 53 | } |
| 54 | |
| 55 | bool valid_object_id(const CALifeSimulator* self, ALife::_OBJECT_ID object_id) |
| 56 | { |
no test coverage detected