mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-09 12:08:17 +03:00
16 lines
245 B
C++
16 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;
|
|
};
|