mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-09 20:18:23 +03:00
17 lines
245 B
C
17 lines
245 B
C
![]() |
#pragma once
|
||
|
|
||
|
enum class WeatherType
|
||
|
{
|
||
|
None,
|
||
|
Rain,
|
||
|
Snow
|
||
|
};
|
||
|
|
||
|
class ScriptInterfaceLevel {
|
||
|
public:
|
||
|
virtual ~ScriptInterfaceLevel() = default;
|
||
|
|
||
|
virtual bool GetSkyLayerEnabled(int index) = 0;
|
||
|
virtual short GetSkyLayerSpeed(int index) = 0;
|
||
|
};
|