LeviLamina
Loading...
Searching...
No Matches
GameTestInstanceLedger.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/AutomaticID.h"
7#include "mc/gametest/framework/IGameTestListener.h"
8
9// auto generated forward declare list
10// clang-format off
11class Dimension;
12class LevelStorage;
13namespace gametest { class BaseGameTestInstance; }
14// clang-format on
15
16class GameTestInstanceLedger : public ::gametest::IGameTestListener {
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 GameTestInstanceLedger& operator=(GameTestInstanceLedger const&);
27 GameTestInstanceLedger(GameTestInstanceLedger const&);
28 GameTestInstanceLedger();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual void onTestStructureLoaded(::gametest::BaseGameTestInstance& testInstance) /*override*/;
34
35 virtual ~GameTestInstanceLedger() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCNAPI explicit GameTestInstanceLedger(::LevelStorage& storage);
42
43 MCNAPI void clear(::DimensionType dimension);
44 // NOLINTEND
45
46public:
47 // static variables
48 // NOLINTBEGIN
49 MCNAPI static ::std::string const& GAME_TEST_INSTANCE_PREFIX();
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor(::LevelStorage& storage);
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
62
63
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCNAPI static void** $vftable();
70 // NOLINTEND
71};
Definition Dimension.h:85
MCAPI GameTestInstanceLedger(::LevelStorage &storage)
MCAPI void $onTestStructureLoaded(::gametest::BaseGameTestInstance &testInstance)
static MCAPI ::std::string const & GAME_TEST_INSTANCE_PREFIX()
MCAPI void clear(::DimensionType dimension)
MCAPI void * $ctor(::LevelStorage &storage)
static MCAPI void ** $vftable()
Definition LevelStorage.h:25
Definition BaseGameTestInstance.h:23
Definition IGameTestListener.h:12
Definition Alias.h:14