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/gametest/framework/IGameTestListener.h"
7
8// auto generated forward declare list
9// clang-format off
10class BoundingBox;
11class LevelStorage;
12struct DimensionType;
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 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCNAPI explicit GameTestInstanceLedger(::LevelStorage& storage);
40
41 MCNAPI void clear(::DimensionType dimension);
42
43 MCNAPI ::std::vector<::BoundingBox> getBoundingBoxes(::DimensionType dimension) const;
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 BoundingBox.h:13
MCAPI GameTestInstanceLedger(::LevelStorage &storage)
MCAPI void $onTestStructureLoaded(::gametest::BaseGameTestInstance &testInstance)
MCAPI ::std::vector<::BoundingBox > getBoundingBoxes(::DimensionType dimension) const
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:26
Definition BaseGameTestInstance.h:25
Definition IGameTestListener.h:12
Definition DimensionType.h:5
Definition Alias.h:14