LeviLamina
Loading...
Searching...
No Matches
BlockAdjacencyMap.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPos;
8// clang-format on
9
10namespace Editor {
11
13public:
14 // member variables
15 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 BlockAdjacencyMap& operator=(BlockAdjacencyMap const&);
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCNAPI void add(::BlockPos const& pos);
29
30 MCNAPI void remove(::BlockPos const& pos);
31
32 MCNAPI void translate(::BlockPos const& offset);
33 // NOLINTEND
34};
35
36} // namespace Editor
Definition BlockPos.h:18
Definition BlockAdjacencyMap.h:12
MCAPI void translate(::BlockPos const &offset)
MCAPI void remove(::BlockPos const &pos)
MCAPI void add(::BlockPos const &pos)
Definition Alias.h:14