LeviLamina
Loading...
Searching...
No Matches
TickTimeManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7
8// auto generated forward declare list
9// clang-format off
10class LevelData;
11class PacketSender;
13namespace Bedrock::PubSub { class Subscription; }
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::LevelData> const> mLevelData;
21 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::PacketSender>> mPacketSender;
22 ::ll::TypedStorage<8, 24, ::std::vector<::Bedrock::PubSub::Subscription>> mWorldClockSubscriptions;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ~TickTimeManager() = default;
29
30 virtual void update();
31
32 virtual ::Bedrock::NotNullNonOwnerPtr<::WorldClockRegistry const> const getWorldClockRegistry() const = 0;
33
34 virtual ::Bedrock::NotNullNonOwnerPtr<::WorldClockRegistry> const getWorldClockRegistry() = 0;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40#ifdef LL_PLAT_C
41 MCAPI void _initializeVanillaWorldClocks();
42#endif
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI void $update();
49
50
51 // NOLINTEND
52};
Definition Subscription.h:10
Definition LevelData.h:55
Definition PacketSender.h:17
Definition TickTimeManager.h:16
Definition WorldClockRegistry.h:19