LeviLamina
Loading...
Searching...
No Matches
MinecraftGameTestInstance.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/BaseGameTestInstance.h"
8
9// auto generated forward declare list
10// clang-format off
11class AABB;
12class BlockSource;
13class BoundingBox;
14class Dimension;
15class Vec3;
16// clang-format on
17
19public:
20 // member variables
21 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~MinecraftGameTestInstance() /*override*/ = default;
38
39 // vIndex: 14
40 virtual ::BlockSource& getBlockSource() const;
41
42 // vIndex: 1
43 virtual void initialize() /*override*/;
44
45 // vIndex: 2
46 virtual bool hasStructureBlock() const /*override*/;
47
48 // vIndex: 3
49 virtual void clearStructure() /*override*/;
50
51 // vIndex: 4
52 virtual void spawnStructure() /*override*/;
53
54 // vIndex: 5
55 virtual ::std::optional<::AABB> getStructureBounds() const /*override*/;
56
57 // vIndex: 6
58 virtual ::std::optional<::Vec3> getStructureBlockPivot() const /*override*/;
59
60 // vIndex: 7
61 virtual ::std::optional<::Vec3> getStructureBlockPosPivot() const /*override*/;
62
63 // vIndex: 8
64 virtual ::BoundingBox getStructureBoundingBox() const /*override*/;
65
66 // vIndex: 9
67 virtual ::DimensionType getStructureDimension() const /*override*/;
68
69 // vIndex: 10
70 virtual int _getLevelTick() const /*override*/;
71
72 // vIndex: 11
73 virtual bool _isTestReady() /*override*/;
74 // NOLINTEND
75
76public:
77 // destructor thunk
78 // NOLINTBEGIN
79
80 // NOLINTEND
81
82public:
83 // virtual function thunks
84 // NOLINTBEGIN
85 MCAPI ::BlockSource& $getBlockSource() const;
86
87 MCAPI void $initialize();
88
89 MCAPI bool $hasStructureBlock() const;
90
91 MCAPI void $clearStructure();
92
93 MCAPI void $spawnStructure();
94
95 MCAPI ::std::optional<::AABB> $getStructureBounds() const;
96
97 MCAPI ::std::optional<::Vec3> $getStructureBlockPivot() const;
98
99 MCAPI ::std::optional<::Vec3> $getStructureBlockPosPivot() const;
100
101 MCAPI ::BoundingBox $getStructureBoundingBox() const;
102
103 MCAPI ::DimensionType $getStructureDimension() const;
104
105 MCAPI int $_getLevelTick() const;
106
107 MCAPI bool $_isTestReady();
108 // NOLINTEND
109
110public:
111 // vftables
112 // NOLINTBEGIN
113 MCAPI static void** $vftable();
114 // NOLINTEND
115};
Definition AABB.h:16
Definition BlockSource.h:67
Definition BoundingBox.h:18
Definition Dimension.h:83
Definition MinecraftGameTestInstance.h:18
Definition Vec3.h:10
Definition BaseGameTestInstance.h:23
Definition Alias.h:14