12 lines
173 B
C#
12 lines
173 B
C#
|
using System;
|
||
|
|
||
|
[Serializable]
|
||
|
public class RandomWeatherWithVariables
|
||
|
{
|
||
|
public LevelWeatherType weatherType;
|
||
|
|
||
|
public int weatherVariable;
|
||
|
|
||
|
public int weatherVariable2;
|
||
|
}
|