Files
2026-02-21 16:45:37 +08:00

15 lines
178 B
C#

namespace DynamicFogAndMist
{
public enum FOG_PRESET
{
Clear = 0,
Mist = 1,
WindyMist = 2,
GroundFog = 3,
Fog = 4,
HeavyFog = 5,
SandStorm = 6,
Custom = 7
}
}