JohnCorby 656ff16305 Revert "Reformat"
This reverts commit 7c0ba5597720f963432d8379a236e74f3508d077.
2022-05-22 18:41:34 -07:00

19 lines
401 B
C#

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