15 lines
178 B
C#
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
|
|
}
|
|
}
|