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 // destructor thunk
50 // NOLINTBEGIN
51
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI bool $shouldUpdateWorldTime() const;
58
59 MCAPI void $setWorldTickTime(int time);
60
61 MCAPI int $getWorldTickTime() const;
62
63 MCAPI void $incrementCurrentTick();
64
65 MCAPI ::Tick $getCurrentTick() const;
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCAPI static void** $vftable();
72 // NOLINTEND
73};
Definition ITickTimeManagerProxy.h:10
Definition TickTimeManagerProxy.h:13
Definition Tick.h:5
Definition Alias.h:14