| 400 | } |
| 401 | |
| 402 | void* MCore::Object::Unbox(MObject* obj) |
| 403 | { |
| 404 | static void* UnboxValuePtr = GetStaticMethodPointer(TEXT("UnboxValue")); |
| 405 | return CallStaticMethod<void*, void*>(UnboxValuePtr, obj); |
| 406 | } |
| 407 | |
| 408 | MObject* MCore::Object::New(const MClass* klass) |
| 409 | { |
nothing calls this directly
no test coverage detected