| 628 | } |
| 629 | |
| 630 | void World::RemoveAttachment(AttachedOnVehicle* attach) |
| 631 | { |
| 632 | int index = _attached.Find(attach); |
| 633 | PoseidonAssert(index >= 0); |
| 634 | if (index >= 0) |
| 635 | { |
| 636 | _attached.Delete(index); |
| 637 | } |
| 638 | } |
| 639 | |
| 640 | void VehicleList::Add(Entity* object) |
| 641 | { |
no test coverage detected