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
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 1
30 virtual uint64 getMaxTickCount(uint64 const creditTicks, bool hasQueuedInput) const /*override*/;
31
32 // vIndex: 2
33 virtual ::IPlayerTickPolicy::TickAction
34 shouldTickPlayer(uint64 const creditTicks, uint64 unprocessedTicksSize) const /*override*/;
35
36 // vIndex: 3
37 virtual bool isStrictMovement() const /*override*/;
38
39 // vIndex: 4
40 virtual bool isStrictDismount() const /*override*/;
41
42 // vIndex: 0
43 virtual ~ThrottledTickPolicy() /*override*/ = default;
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCNAPI uint64 $getMaxTickCount(uint64 const creditTicks, bool hasQueuedInput) const;
50
51 MCNAPI ::IPlayerTickPolicy::TickAction
52 $shouldTickPlayer(uint64 const creditTicks, uint64 unprocessedTicksSize) const;
53
54 MCNAPI bool $isStrictMovement() const;
55
56 MCNAPI bool $isStrictDismount() const;
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
65
66} // namespace PlayerTickPolicy
Definition IPlayerTickPolicy.h:5
Definition ThrottledTickPolicy.h:10
MCAPI::IPlayerTickPolicy::TickAction $shouldTickPlayer(uint64 const creditTicks, uint64 unprocessedTicksSize) const
MCAPI uint64 $getMaxTickCount(uint64 const creditTicks, bool hasQueuedInput) const
Definition Alias.h:14