LeviLamina
Loading...
Searching...
No Matches
WeatherManagerProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/IWeatherManagerProxy.h"
7
9public:
10 // member variables
11 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 1
25 virtual float getRainLevel() const /*override*/;
26
27 // vIndex: 2
28 virtual float getLightningLevel() const /*override*/;
29
30 // vIndex: 3
31 virtual int getRainTime() const /*override*/;
32
33 // vIndex: 4
34 virtual int getLightningTime() const /*override*/;
35
36 // vIndex: 5
37 virtual void setRainLevel(float rainLevel) /*override*/;
38
39 // vIndex: 6
40 virtual void setLightningLevel(float lightningLevel) /*override*/;
41
42 // vIndex: 7
43 virtual void setRainTime(int rainTime) /*override*/;
44
45 // vIndex: 8
46 virtual void setLightningTime(int lightningTime) /*override*/;
47
48 // vIndex: 0
49 virtual ~WeatherManagerProxy() /*override*/ = default;
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCNAPI float $getRainLevel() const;
56
57 MCNAPI float $getLightningLevel() const;
58
59 MCNAPI int $getRainTime() const;
60
61 MCNAPI int $getLightningTime() const;
62
63 MCNAPI void $setRainLevel(float rainLevel);
64
65 MCNAPI void $setLightningLevel(float lightningLevel);
66
67 MCNAPI void $setRainTime(int rainTime);
68
69 MCNAPI void $setLightningTime(int lightningTime);
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
Definition IWeatherManagerProxy.h:5
Definition WeatherManagerProxy.h:8
MCAPI float $getLightningLevel() const
MCAPI void $setLightningTime(int lightningTime)
MCAPI void $setRainLevel(float rainLevel)
MCAPI float $getRainLevel() const
MCAPI void $setRainTime(int rainTime)
static MCAPI void ** $vftable()
MCAPI int $getRainTime() const
MCAPI void $setLightningLevel(float lightningLevel)
MCAPI int $getLightningTime() const
Definition Alias.h:14