forked from CWX/CWX-mods
14 lines
297 B
C#
14 lines
297 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; }
|
|||
|
}
|
|||
|
}
|