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 MCNAPI 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 // vIndex: 0
50 virtual ~BlockState();
51
52 // vIndex: 1
53 virtual void toNBT(::CompoundTag&, int) const = 0;
54
55 // vIndex: 2
56 virtual bool fromNBT(::CompoundTag const&, int&) const = 0;
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition BlockState.h:13
MCAPI void $dtor()
static MCAPI void ** $vftable()
Definition CompoundTag.h:13
Definition BlockState.h:21
static MCAPI ::BlockState::StateListNode *& mHead()