| 126 | #endif |
| 127 | |
| 128 | void Object::__boot() |
| 129 | { |
| 130 | Static(Object__mClass) = hx::_hx_RegisterClass(HX_CSTRING("Dynamic"),AlwaysCast,sNone,sNone,0,0, 0, 0 ); |
| 131 | |
| 132 | #ifdef HXCPP_SCRIPTABLE |
| 133 | hx::ScriptableRegisterClass( HX_CSTRING("hx.Object"), (int)sizeof(hx::Object__scriptable), __scriptableFunctions, Object__scriptable::__script_create, Object::__script_construct ); |
| 134 | #endif |
| 135 | } |
| 136 | |
| 137 | |
| 138 | hx::Class &Object::__SGetClass() { return Object__mClass; } |
nothing calls this directly
no test coverage detected