| 450 | } |
| 451 | |
| 452 | static void SendMessageToSelectedObjects(SceneGraph* scenegraph, OBJECT_MSG::Type type, ...) { |
| 453 | va_list args; |
| 454 | va_start(args, type); |
| 455 | SendMessageToSelectedObjectsVAList(scenegraph, type, args); |
| 456 | va_end(args); |
| 457 | } |
| 458 | |
| 459 | static void BoxSelectEntities(SceneGraph* scenegraph, |
| 460 | const TypeEnable& type_enable, |
no test coverage detected