LeviLamina
Loading...
Searching...
No Matches
StructureAnimationAction.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/world/level/BlockPos.h"
8#include "mc/world/level/chunk/IRequestAction.h"
9#include "mc/world/level/levelgen/structure/StructureSettings.h"
10
11// auto generated forward declare list
12// clang-format off
13class CompoundTag;
14class Dimension;
15class ServerLevel;
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::StructureAnimationData>> mStructureAnimationData;
24 ::ll::TypedStorage<8, 104, ::StructureSettings> mStructureSettings;
25 ::ll::TypedStorage<4, 4, ::DimensionType> mDimensionType;
26 ::ll::TypedStorage<4, 12, ::BlockPos> mLoadPosition;
27 ::ll::TypedStorage<8, 32, ::std::string> mFullName;
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 // vIndex: 1
38 virtual void execute(::ServerLevel& level, ::Dimension& dimension) /*override*/;
39
40 // vIndex: 3
41 virtual bool operator==(::IRequestAction const& action) const /*override*/;
42
43 // vIndex: 2
44 virtual void serialize(::CompoundTag& tag) /*override*/;
45
46 // vIndex: 0
47 virtual ~StructureAnimationAction() /*override*/ = default;
48 // NOLINTEND
49
50public:
51 // member functions
52 // NOLINTBEGIN
54 ::std::unique_ptr<::StructureAnimationData> structureAnimationData,
55 ::DimensionType dimensionType
56 );
57
59 ::StructureSettings const& structureSettings,
60 ::DimensionType dimensionType,
61 ::BlockPos const& loadPosition,
62 ::std::string const& fullName
63 );
64 // NOLINTEND
65
66public:
67 // static functions
68 // NOLINTBEGIN
69 MCNAPI static ::std::unique_ptr<::StructureAnimationAction>
70 load(::CompoundTag const& tag, ::std::string const& dimensionPrefix);
71 // NOLINTEND
72
73public:
74 // constructor thunks
75 // NOLINTBEGIN
76 MCNAPI void*
77 $ctor(::std::unique_ptr<::StructureAnimationData> structureAnimationData, ::DimensionType dimensionType);
78
79 MCNAPI void* $ctor(
80 ::StructureSettings const& structureSettings,
81 ::DimensionType dimensionType,
82 ::BlockPos const& loadPosition,
83 ::std::string const& fullName
84 );
85 // NOLINTEND
86
87public:
88 // virtual function thunks
89 // NOLINTBEGIN
90 MCNAPI void $execute(::ServerLevel& level, ::Dimension& dimension);
91
92 MCNAPI void $serialize(::CompoundTag& tag);
93 // NOLINTEND
94
95public:
96 // vftables
97 // NOLINTBEGIN
98 MCNAPI static void** $vftable();
99 // NOLINTEND
100};
Definition AutomaticID.h:6
Definition BlockPos.h:18
Definition CompoundTag.h:13
Definition Dimension.h:83
Definition IRequestAction.h:12
Definition ServerLevel.h:54
Definition StructureAnimationAction.h:19
static MCAPI ::std::unique_ptr<::StructureAnimationAction > load(::CompoundTag const &tag, ::std::string const &dimensionPrefix)
MCAPI void $execute(::ServerLevel &level, ::Dimension &dimension)
MCAPI void * $ctor(::StructureSettings const &structureSettings, ::DimensionType dimensionType, ::BlockPos const &loadPosition, ::std::string const &fullName)
MCAPI void $serialize(::CompoundTag &tag)
static MCAPI void ** $vftable()
MCAPI StructureAnimationAction(::std::unique_ptr<::StructureAnimationData > structureAnimationData, ::DimensionType dimensionType)
MCAPI StructureAnimationAction(::StructureSettings const &structureSettings, ::DimensionType dimensionType, ::BlockPos const &loadPosition, ::std::string const &fullName)
MCAPI void * $ctor(::std::unique_ptr<::StructureAnimationData > structureAnimationData, ::DimensionType dimensionType)
Definition StructureAnimationData.h:17
Definition StructureSettings.h:18
Definition serialize.h:11