forked from CWX/CWX-mods
12 lines
295 B
C#
12 lines
295 B
C#
namespace CWX_WeatherPatch
|
|
{
|
|
public class JSONClass
|
|
{
|
|
public float Cloudness { get; set; }
|
|
public int WindDirection { get; set; }
|
|
public float Wind { get; set; }
|
|
public float Rain { get; set; }
|
|
public float RainRandomness { get; set; }
|
|
}
|
|
}
|