* Push a UObject */
| 646 | * Push a UObject |
| 647 | */ |
| 648 | static void PushObjectElement(lua_State *L, FObjectPropertyBase *Property, void *Value) |
| 649 | { |
| 650 | UObject *Object = Property->GetObjectPropertyValue(Value); |
| 651 | PushObjectCore(L, Object); |
| 652 | } |
| 653 | |
| 654 | /** |
| 655 | * Push a Interface |
nothing calls this directly
no test coverage detected