| 405 | } |
| 406 | |
| 407 | NpAggregate* NpAggregate::createObject(PxU8*& address, PxDeserializationContext& context) |
| 408 | { |
| 409 | NpAggregate* obj = new (address) NpAggregate(PxBaseFlag::eIS_RELEASABLE); |
| 410 | address += sizeof(NpAggregate); |
| 411 | obj->importExtraData(context); |
| 412 | obj->resolveReferences(context); |
| 413 | return obj; |
| 414 | } |
| 415 | |
| 416 | void NpAggregate::requiresObjects(PxProcessPxBaseCallback& c) |
| 417 | { |
nothing calls this directly
no test coverage detected