LeviLamina
Loading...
Searching...
No Matches
LevelChunkEventManagerProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/chunk/ILevelChunkEventManagerProxy.h"
7
8// auto generated forward declare list
9// clang-format off
10class ChunkSource;
11class LevelChunk;
12// clang-format on
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 1
19 virtual bool isReadOnly(::LevelChunk const& levelChunk) const /*override*/;
20
21 // vIndex: 2
22 virtual bool setOnChunkLoadedCalled(::LevelChunk& levelChunk) /*override*/;
23
24 // vIndex: 3
25 virtual void onTickingStarted(::LevelChunk& levelChunk) /*override*/;
26
27 // vIndex: 4
28 virtual void setupRedstoneCircuit(::ChunkSource& chunkSource, ::LevelChunk& levelChunk) /*override*/;
29
30 // vIndex: 5
31 virtual int getClosestPlayerDistanceSquared(::LevelChunk const& levelChunk) const /*override*/;
32
33 // vIndex: 6
34 virtual bool isOwnedByTickingThread(::LevelChunk const& levelChunk) const /*override*/;
35
36 // vIndex: 7
37 virtual void onTickingStopped(::LevelChunk& levelChunk) /*override*/;
38
39 // vIndex: 0
40 virtual ~LevelChunkEventManagerProxy() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI bool $isReadOnly(::LevelChunk const& levelChunk) const;
53
54 MCAPI bool $setOnChunkLoadedCalled(::LevelChunk& levelChunk);
55
56 MCAPI void $onTickingStarted(::LevelChunk& levelChunk);
57
58 MCAPI void $setupRedstoneCircuit(::ChunkSource& chunkSource, ::LevelChunk& levelChunk);
59
60 MCAPI int $getClosestPlayerDistanceSquared(::LevelChunk const& levelChunk) const;
61
62 MCAPI bool $isOwnedByTickingThread(::LevelChunk const& levelChunk) const;
63
64 MCAPI void $onTickingStopped(::LevelChunk& levelChunk);
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCAPI static void** $vftable();
71 // NOLINTEND
72};
Definition ChunkSource.h:34
Definition ILevelChunkEventManagerProxy.h:11
Definition LevelChunkEventManagerProxy.h:14
Definition LevelChunk.h:73