LeviLamina
Loading...
Searching...
No Matches
ITrait.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockLegacy;
8class CompoundTag;
9// clang-format on
10
11namespace BlockTrait {
12
13class ITrait {
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~ITrait() = default;
19
20 // vIndex: 1
21 virtual void applyToBlockLegacy(::BlockLegacy&) const = 0;
22
23 // vIndex: 2
24 virtual ::std::unique_ptr<::CompoundTag> buildNetworkTag() const = 0;
25
26 // vIndex: 3
27 virtual void initializeFromNetwork(::CompoundTag const&) = 0;
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCAPI static void** $vftable();
46 // NOLINTEND
47};
48
49} // namespace BlockTrait
Definition BlockLegacy.h:88
Definition ITrait.h:13
Definition CompoundTag.h:13