LeviLamina
Loading...
Searching...
No Matches
ScriptGameTestFunctionContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/lifetime_registry/StrongTypedObjectHandle.h"
7#include "mc/deps/scripting/lifetime_registry/WeakLifetimeScope.h"
8#include "mc/deps/scripting/lifetime_registry/WeakTypedObjectHandle.h"
9#include "mc/gametest/framework/IGameTestFunctionContext.h"
10
11// auto generated forward declare list
12// clang-format off
13namespace ScriptModuleGameTest { class ScriptGameTestHelper; }
14namespace gametest { class BaseGameTestHelper; }
15// clang-format on
16
17namespace ScriptModuleGameTest {
18
19class ScriptGameTestFunctionContext : public ::gametest::IGameTestFunctionContext {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 16, ::Scripting::WeakLifetimeScope> mScope;
24 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::ScriptModuleGameTest::ScriptGameTestHelper>> mScriptGameTestHelper;
25 ::ll::TypedStorage<8, 32, ::Scripting::StrongTypedObjectHandle<::ScriptModuleGameTest::ScriptGameTestHelper>>
26 mScriptGameTestHelperHandle;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 ScriptGameTestFunctionContext();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ~ScriptGameTestFunctionContext() /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI ScriptGameTestFunctionContext(::Scripting::WeakLifetimeScope scope, ::gametest::BaseGameTestHelper& helper);
43
44 MCAPI ::Scripting::WeakTypedObjectHandle<::ScriptModuleGameTest::ScriptGameTestHelper> getScriptGameTestHelper();
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(::Scripting::WeakLifetimeScope scope, ::gametest::BaseGameTestHelper& helper);
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCAPI void $dtor();
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
65
66} // namespace ScriptModuleGameTest
Definition ScriptGameTestHelper.h:43
Definition WeakLifetimeScope.h:14
Definition BaseGameTestHelper.h:34
Definition IGameTestFunctionContext.h:7