using NewHorizons.Utility;
using Newtonsoft.Json;
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;
}
}