LeviLamina
Loading...
Searching...
No Matches
ScriptChunkValidator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/ChunkPos.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class BlockSource;
12// clang-format on
13
14namespace ScriptModuleMinecraft {
15
16class ScriptChunkValidator {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 16, ::std::set<::ChunkPos>> mChunkPositions;
21 ::ll::TypedStorage<4, 4, int const> mMaxHeight;
22 ::ll::TypedStorage<4, 4, int const> mMinHeight;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 ScriptChunkValidator();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI ScriptChunkValidator(::std::set<::ChunkPos> const& chunkPositions, ::BlockSource& region);
33
34#ifdef LL_PLAT_C
35 MCAPI bool operator()(::BlockPos const& blockPos) const;
36#endif
37
38 MCFOLD uint64 size() const;
39
40 MCAPI ~ScriptChunkValidator();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::std::set<::ChunkPos> const& chunkPositions, ::BlockSource& region);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCFOLD void $dtor();
53 // NOLINTEND
54};
55
56} // namespace ScriptModuleMinecraft
Definition BlockPos.h:21
Definition BlockSource.h:73