* Push a Interface */
| 655 | * Push a Interface |
| 656 | */ |
| 657 | static void PushInterfaceElement(lua_State *L, FInterfaceProperty *Property, void *Value) |
| 658 | { |
| 659 | const FScriptInterface &Interface = Property->GetPropertyValue(Value); |
| 660 | UObject *Object = Interface.GetObject(); |
| 661 | PushObjectCore(L, Object); |
| 662 | } |
| 663 | |
| 664 | /** |
| 665 | * Push a ScriptStruct |
nothing calls this directly
no test coverage detected