| 319 | } |
| 320 | |
| 321 | void Group::HandleTransformationOccured() { |
| 322 | for (auto& child : children) { |
| 323 | Object* obj = child.direct_ptr; |
| 324 | if (obj) { |
| 325 | obj->HandleTransformationOccurred(); |
| 326 | } |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | void Group::ReceiveObjectMessageVAList(OBJECT_MSG::Type type, va_list args) { |
| 331 | switch (type) { |
nothing calls this directly
no test coverage detected