LeviLamina
Loading...
Searching...
No Matches
UnknownBlockTypeRegistry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/registry/IUnknownBlockTypeRegistry.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class BlockType;
12class CompoundTag;
13// clang-format on
14
16public:
17 // UnknownBlockTypeRegistry inner types define
18 using UnknownBlockLookupMap = ::std::map<uint64, ::std::unique_ptr<::BlockType>>;
19
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 80, ::std::mutex> mMutex;
24 ::ll::TypedStorage<8, 16, ::std::map<uint64, ::std::unique_ptr<::BlockType>>> mUnknownBlockLookupMap;
25 // NOLINTEND
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~UnknownBlockTypeRegistry() /*override*/ = default;
31
32 virtual ::Block const& getUnknownBlock(::CompoundTag const& serId) /*override*/;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38 MCAPI ::Block const& $getUnknownBlock(::CompoundTag const& serId);
39
40
41 // NOLINTEND
42};
Definition BlockType.h:79
Definition Block.h:41
Definition CompoundTag.h:18
Definition IUnknownBlockTypeRegistry.h:14
Definition UnknownBlockTypeRegistry.h:15