LeviLamina
Loading...
Searching...
No Matches
BlockStateMeta.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/nbt/Tag.h"
7#include "mc/util/BidirectionalUnorderedMap.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockState;
12class ListTag;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<1, 1, ::Tag::Type> mType;
20 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::ListTag>> mEnumValues;
21 ::ll::TypedStorage<8, 128, ::BidirectionalUnorderedMap<int, uint64>> mHashIndexMap;
22 ::ll::TypedStorage<8, 8, ::BlockState const&> mBlockState;
23 ::ll::TypedStorage<8, 32, ::std::string> mName;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 BlockStateMeta& operator=(BlockStateMeta const&);
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI int indexOf(uint64 const& h) const;
36 // NOLINTEND
37};
Definition BlockStateMeta.h:15
Definition BlockState.h:13
Definition ListTag.h:12