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 // virtual function thunks
78 // NOLINTBEGIN
79 MCNAPI ::BlockSource& $getBlockSource() const;
80
81 MCNAPI void $initialize();
82
83 MCNAPI bool $hasStructureBlock() const;
84
85 MCNAPI void $clearStructure();
86
87 MCNAPI void $spawnStructure();
88
89 MCNAPI ::std::optional<::AABB> $getStructureBounds() const;
90
91 MCNAPI ::std::optional<::Vec3> $getStructureBlockPivot() const;
92
93 MCNAPI ::std::optional<::Vec3> $getStructureBlockPosPivot() const;
94
95 MCNAPI ::BoundingBox $getStructureBoundingBox() const;
96
97 MCNAPI ::DimensionType $getStructureDimension() const;
98
99 MCNAPI int $_getLevelTick() const;
100
101 MCNAPI bool $_isTestReady();
102 // NOLINTEND
103
104public:
105 // vftables
106 // NOLINTBEGIN
107 MCNAPI static void** $vftable();
108 // NOLINTEND
109};
Definition AABB.h:18
Definition BlockSource.h:67
Definition BoundingBox.h:13
Definition Dimension.h:83
Definition MinecraftGameTestInstance.h:18
static MCAPI void ** $vftable()
MCAPI void $spawnStructure()
MCAPI::DimensionType $getStructureDimension() const
MCAPI void $clearStructure()
MCAPI int $_getLevelTick() const
MCAPI ::std::optional<::Vec3 > $getStructureBlockPivot() const
MCAPI::BoundingBox $getStructureBoundingBox() const
MCAPI ::std::optional<::AABB > $getStructureBounds() const
MCAPI bool $hasStructureBlock() const
MCAPI ::std::optional<::Vec3 > $getStructureBlockPosPivot() const
MCAPI::BlockSource & $getBlockSource() const
Definition Vec3.h:10
Definition BaseGameTestInstance.h:23
Definition Alias.h:14