LeviLamina
Loading...
Searching...
No Matches
TickingAreaList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/ticking/TickingAreaListBase.h"
7
8// auto generated forward declare list
9// clang-format off
10class ITickingArea;
11class LevelStorage;
12class Vec3;
13// clang-format on
14
16public:
17 // prevent constructor by default
18 TickingAreaList& operator=(TickingAreaList const&);
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 1
25 virtual bool removeDistantEntityAreasAndCheckForRemoved(
26 ::std::vector<::Vec3> const& playerPositions,
27 ::std::function<void(::ITickingArea const&)> requeue,
28 ::LevelStorage& levelStorage
29 ) /*override*/;
30
31 // vIndex: 0
32 virtual ~TickingAreaList() /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCNAPI void* $ctor(::TickingAreaList const&);
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCNAPI void $dtor();
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
57 ::std::vector<::Vec3> const& playerPositions,
58 ::std::function<void(::ITickingArea const&)> requeue,
59 ::LevelStorage& levelStorage
60 );
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
Definition ITickingArea.h:25
Definition LevelStorage.h:25
Definition TickingAreaListBase.h:15
Definition TickingAreaList.h:15
static MCAPI void ** $vftable()
MCAPI TickingAreaList(::TickingAreaList const &)
MCAPI void * $ctor(::TickingAreaList const &)
MCAPI bool $removeDistantEntityAreasAndCheckForRemoved(::std::vector<::Vec3 > const &playerPositions, ::std::function< void(::ITickingArea const &)> requeue, ::LevelStorage &levelStorage)
MCAPI void $dtor()
Definition Vec3.h:10