LeviLamina
Loading...
Searching...
No Matches
ThrottledTickPolicy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/entity/components/IPlayerTickPolicy.h"
7
8namespace PlayerTickPolicy {
9
11public:
12 // member variables
13 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 1
28 virtual uint64 getMaxTickCount(uint64 const creditTicks, bool hasQueuedInput) const /*override*/;
29
30 // vIndex: 2
31 virtual ::IPlayerTickPolicy::TickAction
32 shouldTickPlayer(uint64 const creditTicks, uint64 unprocessedTicksSize) const /*override*/;
33
34 // vIndex: 0
35 virtual ~ThrottledTickPolicy() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCAPI uint64 $getMaxTickCount(uint64 const creditTicks, bool hasQueuedInput) const;
48
49 MCAPI ::IPlayerTickPolicy::TickAction
50 $shouldTickPlayer(uint64 const creditTicks, uint64 unprocessedTicksSize) const;
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCAPI static void** $vftable();
57 // NOLINTEND
58};
59
60} // namespace PlayerTickPolicy
Definition IPlayerTickPolicy.h:5
Definition ThrottledTickPolicy.h:10
Definition Alias.h:14