LeviLamina
Loading...
Searching...
No Matches
VanillaBlockData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/registry/BlockArchetypePtr.h"
7#include "mc/world/level/material/MaterialType.h"
8
9// auto generated forward declare list
10// clang-format off
11class CompoundTag;
12namespace cereal { struct ReflectionCtx; }
13// clang-format on
14
15class VanillaBlockData {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, int> mBlockID;
20 ::ll::TypedStorage<4, 4, ::MaterialType> mMaterial;
21 ::ll::TypedStorage<8, 16, ::BlockArchetypePtr> mBlockArchetype;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 VanillaBlockData(VanillaBlockData const&);
27 VanillaBlockData();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI ::std::unique_ptr<::CompoundTag> buildNetworkTag() const;
33
34 MCAPI ::VanillaBlockData& operator=(::VanillaBlockData&&);
35
36 MCAPI ::VanillaBlockData& operator=(::VanillaBlockData const&);
37
38 MCAPI ~VanillaBlockData();
39 // NOLINTEND
40
41public:
42 // static functions
43 // NOLINTBEGIN
44 MCAPI static void bindType(::cereal::ReflectionCtx& ctx);
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCFOLD void $dtor();
51 // NOLINTEND
52};
Definition CompoundTag.h:23
Definition ReflectionCtx.h:11
Definition ctx.h:5