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 // vIndex: 0
20 virtual ~IConnectionUpdateCallback() = default;
21
22 // vIndex: 1
23 virtual ::Block const&
24 updateConnection(::BlockSource const&, ::Block const&, ::BlockPos const&, ::NeighborBlockDirections) const = 0;
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
30
31 // NOLINTEND
32};
33
34} // namespace BlockTrait
Definition BlockPos.h:17
Definition BlockSource.h:66
Definition IConnectionUpdateCallback.h:15
Definition Block.h:38
Definition NeighborBlockDirections.h:13