LeviLamina
Loading...
Searching...
No Matches
BlockQueuedTickingComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8namespace Bedrock::PubSub { class Subscription; }
9namespace BlockEvents { class BlockEventManager; }
10namespace BlockEvents { class BlockQueuedTickEvent; }
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<1, 1, bool> mLooping;
18 ::ll::TypedStorage<4, 4, uint> mDelayIntervalMinTicks;
19 ::ll::TypedStorage<4, 4, uint> mDelayIntervalMaxTicks;
20 ::ll::TypedStorage<8, 256, ::DefinitionTrigger> mOnTimeDown;
21 ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mEventSubscription;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 0
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI void finalize(::BlockEvents::BlockEventManager& manager);
35
36 MCAPI void onTick(::BlockEvents::BlockQueuedTickEvent const& eventData) const;
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCAPI void $dtor();
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCAPI static void** $vftable();
49 // NOLINTEND
50};
Definition BlockEventManager.h:15
Definition BlockQueuedTickEvent.h:15
Definition DefinitionTrigger.h:10
Definition BlockQueuedTickingComponent.h:13