| 16 | } |
| 17 | |
| 18 | RavEngine::IPhysicsActor::~IPhysicsActor() |
| 19 | { |
| 20 | for (auto& a : senders) { |
| 21 | if (!a.isNull()) { |
| 22 | //this will fail if not a SharedObject |
| 23 | a.get()->RemoveReceiver(this); |
| 24 | } |
| 25 | } |
| 26 | } |
nothing calls this directly
no test coverage detected