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