LeviLamina
Loading...
Searching...
No Matches
TickTimeManagerProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/ITickTimeManagerProxy.h"
7
8// auto generated forward declare list
9// clang-format off
10struct Tick;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~TickTimeManagerProxy() /*override*/ = default;
31
32 // vIndex: 1
33 virtual bool shouldUpdateWorldTime() const /*override*/;
34
35 // vIndex: 2
36 virtual void setWorldTickTime(int time) /*override*/;
37
38 // vIndex: 3
39 virtual int getWorldTickTime() const /*override*/;
40
41 // vIndex: 4
42 virtual void incrementCurrentTick() /*override*/;
43
44 // vIndex: 5
45 virtual ::Tick getCurrentTick() const /*override*/;
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI bool $shouldUpdateWorldTime() const;
52
53 MCNAPI void $setWorldTickTime(int time);
54
55 MCNAPI int $getWorldTickTime() const;
56
57 MCNAPI void $incrementCurrentTick();
58
59 MCNAPI ::Tick $getCurrentTick() const;
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
Definition ITickTimeManagerProxy.h:10
Definition TickTimeManagerProxy.h:13
MCAPI bool $shouldUpdateWorldTime() const
MCAPI void $incrementCurrentTick()
static MCAPI void ** $vftable()
MCAPI int $getWorldTickTime() const
MCAPI void $setWorldTickTime(int time)
MCAPI::Tick $getCurrentTick() const
Definition Tick.h:5
Definition Alias.h:14