#region
using NewHorizons.Utility;
using Newtonsoft.Json;
#endregion
namespace NewHorizons.External.Modules.VariableSize
{
[JsonObject]
public class WaterModule : VariableSizeModule
{
///
/// Size of the water sphere
///
public float size;
///
/// Tint of the water
///
public MColor tint;
}
}