| 40 | } |
| 41 | |
| 42 | FLuaSet* FContainerRegistry::NewSet(lua_State* L, TSharedPtr<ITypeInterface> ElementType, FLuaSet::FScriptSetFlag Flag) |
| 43 | { |
| 44 | const FScriptSet* ScriptSet = new FScriptSet; |
| 45 | void* Userdata = NewUserdata(L, FScriptContainerDesc::Set); |
| 46 | const auto Ret = new(Userdata) FLuaSet(ScriptSet, ElementType, Flag); |
| 47 | return Ret; |
| 48 | } |
| 49 | |
| 50 | FLuaMap* FContainerRegistry::NewMap(lua_State* L, TSharedPtr<ITypeInterface> KeyType, TSharedPtr<ITypeInterface> ValueType, FLuaMap::FScriptMapFlag Flag) |
| 51 | { |
no test coverage detected