| 104 | } |
| 105 | |
| 106 | void ComponentTypeSetNewWorldFn(HComponentType type, ComponentNewWorld fn) { type->m_NewWorldFunction = fn; } |
| 107 | void ComponentTypeSetDeleteWorldFn(HComponentType type, ComponentDeleteWorld fn) { type->m_DeleteWorldFunction = fn; } |
| 108 | void ComponentTypeSetCreateFn(HComponentType type, ComponentCreate fn) { type->m_CreateFunction = fn; } |
| 109 | void ComponentTypeSetDestroyFn(HComponentType type, ComponentDestroy fn) { type->m_DestroyFunction = fn; } |
no outgoing calls
no test coverage detected