Add test case of nested types in scripting

#2582 #2591
This commit is contained in:
Wojtek Figat
2024-05-15 13:09:51 +02:00
parent 17d1d87268
commit 35ddfc2455
2 changed files with 63 additions and 0 deletions

View File

@@ -7,6 +7,16 @@
#include "Engine/Scripting/ManagedCLR/MUtils.h"
#include <ThirdParty/catch2/catch.hpp>
TestNesting::TestNesting(const SpawnParams& params)
: SerializableScriptingObject(params)
{
}
TestNesting2::TestNesting2(const SpawnParams& params)
: SerializableScriptingObject(params)
{
}
TestClassNative::TestClassNative(const SpawnParams& params)
: ScriptingObject(params)
{