LeviLamina
Loading...
Searching...
No Matches
IWeatherManagerProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // virtual functions
8 // NOLINTBEGIN
9 // vIndex: 0
10 virtual ~IWeatherManagerProxy() = default;
11
12 // vIndex: 1
13 virtual float getRainLevel() const = 0;
14
15 // vIndex: 2
16 virtual float getLightningLevel() const = 0;
17
18 // vIndex: 3
19 virtual int getRainTime() const = 0;
20
21 // vIndex: 4
22 virtual int getLightningTime() const = 0;
23
24 // vIndex: 5
25 virtual void setRainLevel(float) = 0;
26
27 // vIndex: 6
28 virtual void setLightningLevel(float) = 0;
29
30 // vIndex: 7
31 virtual void setRainTime(int) = 0;
32
33 // vIndex: 8
34 virtual void setLightningTime(int) = 0;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46
47 // NOLINTEND
48};
Definition IWeatherManagerProxy.h:5