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/chunk/IRequestAction.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
12class CompoundTag;
13class Dimension;
14class 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 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual void execute(::ServerLevel& level, ::Dimension& dimension) /*override*/;
35
36 // vIndex: 3
37 virtual bool operator==(::IRequestAction const& action) const /*override*/;
38
39 // vIndex: 2
40 virtual void serialize(::CompoundTag& tag) /*override*/;
41
42 // vIndex: 0
43 virtual ~StructureAnimationAction() /*override*/ = default;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
50 ::std::unique_ptr<::StructureAnimationData> structureAnimationData,
51 ::DimensionType dimensionType
52 );
53
55 ::StructureSettings const& structureSettings,
56 ::DimensionType dimensionType,
57 ::BlockPos const& loadPosition,
58 ::std::string const& fullName
59 );
60 // NOLINTEND
61
62public:
63 // static functions
64 // NOLINTBEGIN
65 MCAPI static ::std::unique_ptr<::StructureAnimationAction>
66 load(::CompoundTag const& tag, ::std::string const& dimensionPrefix);
67 // NOLINTEND
68
69public:
70 // constructor thunks
71 // NOLINTBEGIN
72 MCAPI void*
73 $ctor(::std::unique_ptr<::StructureAnimationData> structureAnimationData, ::DimensionType dimensionType);
74
75 MCAPI void* $ctor(
76 ::StructureSettings const& structureSettings,
77 ::DimensionType dimensionType,
78 ::BlockPos const& loadPosition,
79 ::std::string const& fullName
80 );
81 // NOLINTEND
82
83public:
84 // destructor thunk
85 // NOLINTBEGIN
86
87 // NOLINTEND
88
89public:
90 // virtual function thunks
91 // NOLINTBEGIN
92 MCAPI void $execute(::ServerLevel& level, ::Dimension& dimension);
93
94 MCAPI void $serialize(::CompoundTag& tag);
95 // NOLINTEND
96
97public:
98 // vftables
99 // NOLINTBEGIN
100 MCAPI static void** $vftable();
101 // NOLINTEND
102};
Definition AutomaticID.h:6
Definition BlockPos.h:18
Definition CompoundTag.h:13
Definition Dimension.h:83
Definition IRequestAction.h:12
Definition ServerLevel.h:52
Definition StructureAnimationAction.h:19
Definition StructureAnimationData.h:17
Definition StructureSettings.h:18
Definition serialize.h:11