LeviLamina
Loading...
Searching...
No Matches
CommonBlockUtilityServiceProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class AABB;
8class ChunkPos;
9// clang-format on
10
11namespace Editor::BlockUtils {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~CommonBlockUtilityServiceProvider() = default;
19
20 // vIndex: 1
21 virtual ::std::set<::ChunkPos> getChunksFromAABB(::AABB const&) const = 0;
22
23 // vIndex: 2
24 virtual bool isChunkLoaded(::ChunkPos const&) const = 0;
25
26 // vIndex: 3
27 virtual bool isChunkFullyLoaded(::ChunkPos const&) const = 0;
28
29 // vIndex: 4
30 virtual bool areChunksLoaded(::std::set<::ChunkPos> const&) const = 0;
31
32 // vIndex: 5
33 virtual bool isAreaLoaded(::AABB const&) const = 0;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47};
48
49} // namespace Editor::BlockUtils
Definition AABB.h:16
Definition ChunkPos.h:11
Definition CommonBlockUtilityServiceProvider.h:13