MCPcopy Create free account
hub / github.com/Tencent/sluaunreal / getTMap

Method getTMap

Source/democpp/SluaTestCase.cpp:210–220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208 }
209
210 TMap<int,FString> getTMap() {
211#if !((ENGINE_MINOR_VERSION<20) && (ENGINE_MAJOR_VERSION==4))
212 return { {1,"s"},{2,"a"},{3,"b"} };
213#else
214 TMap<int, FString> ret;
215 ret.Add(1, "s");
216 ret.Add(2, "a");
217 ret.Add(3, "b");
218 return ret;
219#endif
220 }
221
222 TSharedPtr<Box> getBoxPtr() {
223 return MakeShareable(new Box);

Callers

nothing calls this directly

Calls 1

AddMethod · 0.45

Tested by

no test coverage detected