LeviLamina
Loading...
Searching...
No Matches
ClientUnknownBlockTypeRegistry.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 CompoundTag;
12// clang-format on
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual ~ClientUnknownBlockTypeRegistry() /*override*/ = default;
19
20 virtual ::Block const& getUnknownBlock(::CompoundTag const&) /*override*/;
21 // NOLINTEND
22
23public:
24 // virtual function thunks
25 // NOLINTBEGIN
26#ifdef LL_PLAT_C
27 MCAPI ::Block const& $getUnknownBlock(::CompoundTag const&);
28#endif
29
30
31 // NOLINTEND
32
33public:
34 // vftables
35 // NOLINTBEGIN
36 MCNAPI static void** $vftable();
37 // NOLINTEND
38};
Definition Block.h:43
Definition ClientUnknownBlockTypeRegistry.h:14
static MCAPI void ** $vftable()
Definition CompoundTag.h:23
Definition IUnknownBlockTypeRegistry.h:14