LeviLamina
Loading...
Searching...
No Matches
BlockState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
11// clang-format on
12
14public:
15 // BlockState inner types declare
16 // clang-format off
17 struct StateListNode;
18 // clang-format on
19
20 // BlockState inner types define
22 public:
23 // member variables
24 // NOLINTBEGIN
25 ::ll::TypedStorage<8, 8, ::BlockState::StateListNode*> mNext;
26 ::ll::TypedStorage<8, 8, ::BlockState::StateListNode*> mPrev;
27 ::ll::TypedStorage<8, 8, ::BlockState*> mState;
28 // NOLINTEND
29
30 public:
31 // static variables
32 // NOLINTBEGIN
33 MCAPI static ::BlockState::StateListNode*& mHead();
34 // NOLINTEND
35 };
36
37public:
38 // member variables
39 // NOLINTBEGIN
40 ::ll::TypedStorage<8, 8, uint64 const> mID;
41 ::ll::TypedStorage<8, 8, uint64 const> mVariationCount;
42 ::ll::TypedStorage<8, 48, ::HashedString const> mName;
43 ::ll::TypedStorage<8, 24, ::BlockState::StateListNode> mNode;
44 // NOLINTEND
45
46public:
47 // virtual functions
48 // NOLINTBEGIN
49 virtual ~BlockState();
50
51 virtual void toNBT(::CompoundTag&, int) const = 0;
52
53 virtual bool fromNBT(::CompoundTag const&, int&) const = 0;
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCAPI void $dtor();
60 // NOLINTEND
61
62public:
63 // virtual function thunks
64 // NOLINTBEGIN
65
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
Definition BlockState.h:13
static MCAPI void ** $vftable()
Definition CompoundTag.h:23
Definition BlockState.h:21