LeviLamina
Loading...
Searching...
No Matches
ChunkSingleViewSource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/chunk/ChunkSource.h"
7
8// auto generated forward declare list
9// clang-format off
10class ChunkPos;
11class LevelChunk;
12// clang-format on
13
14class ChunkSingleViewSource : public ::ChunkSource {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::LevelChunk>> mLevelChunk;
19 // NOLINTEND
20
21#ifdef LL_PLAT_S
22#else // LL_PLAT_C
23public:
24 // prevent constructor by default
25 ChunkSingleViewSource();
26
27#endif
28public:
29 // virtual functions
30 // NOLINTBEGIN
31#ifdef LL_PLAT_S
32 virtual ::std::shared_ptr<::LevelChunk> getExistingChunk(::ChunkPos const&) /*override*/;
33#else // LL_PLAT_C
34 virtual ::std::shared_ptr<::LevelChunk> getExistingChunk(::ChunkPos const& pos) /*override*/;
35#endif
36
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42#ifdef LL_PLAT_C
43 MCAPI explicit ChunkSingleViewSource(::std::shared_ptr<::LevelChunk> lc);
44#endif
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50#ifdef LL_PLAT_C
51 MCAPI void* $ctor(::std::shared_ptr<::LevelChunk> lc);
52#endif
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58#ifdef LL_PLAT_C
59 MCAPI ::std::shared_ptr<::LevelChunk> $getExistingChunk(::ChunkPos const& pos);
60#endif
61
62
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCAPI static void** $vftable();
69 // NOLINTEND
70};
static MCAPI void ** $vftable()
Definition ChunkPos.h:11
Definition LevelChunk.h:87