LeviLamina
Loading...
Searching...
No Matches
IConnectionUpdateCallback.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Block;
8class BlockPos;
9class BlockSource;
11// clang-format on
12
13namespace BlockTrait {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ~IConnectionUpdateCallback() = default;
20
21 virtual ::Block const&
22 updateConnection(::BlockSource const&, ::Block const&, ::BlockPos const&, ::NeighborBlockDirections) const = 0;
23 // NOLINTEND
24
25public:
26 // virtual function thunks
27 // NOLINTBEGIN
28
29 // NOLINTEND
30
31public:
32 // vftables
33 // NOLINTBEGIN
34 MCNAPI static void** $vftable();
35 // NOLINTEND
36};
37
38} // namespace BlockTrait
Definition BlockPos.h:19
Definition BlockSource.h:68
Definition IConnectionUpdateCallback.h:15
Definition Block.h:43
Definition NeighborBlockDirections.h:14