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/common/SharedPtr.h"
7#include "mc/world/level/block/registry/IUnknownBlockTypeRegistry.h"
8
9// auto generated forward declare list
10// clang-format off
11class Block;
12class BlockLegacy;
13class CompoundTag;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~UnknownBlockTypeRegistry() /*override*/ = default;
35
36 // vIndex: 1
37 virtual ::Block const& getUnknownBlock(::CompoundTag const& serId) /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI void _registerBlock(::std::string const& name, uint64 serIdHash);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI ::Block const& $getUnknownBlock(::CompoundTag const& serId);
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BlockLegacy.h:88
Definition Block.h:36
Definition CompoundTag.h:13
Definition IUnknownBlockTypeRegistry.h:14
Definition UnknownBlockTypeRegistry.h:16
Definition Alias.h:14