LeviLamina
Loading...
Searching...
No Matches
ITickTimeManagerProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7struct Tick;
8// clang-format on
9
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual ~ITickTimeManagerProxy() = default;
15
16 virtual bool shouldUpdateWorldTime() const = 0;
17
18 virtual void setWorldTickTime(int) = 0;
19
20 virtual int getWorldTickTime() const = 0;
21
22 virtual void incrementCurrentTick() = 0;
23
24 virtual ::Tick getCurrentTick() const = 0;
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
30
31 // NOLINTEND
32};
Definition ITickTimeManagerProxy.h:10
Definition Tick.h:5