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

17 lines
377 B
C#

using NewHorizons.Utility;
namespace NewHorizons.External.Modules.VariableSize
{
public class SandModule : VariableSizeModule
{
/// <summary>
/// Size of the sand
/// </summary>
public float Size { get; set; }
/// <summary>
/// Tint of the sand
/// </summary>
public MColor Tint { get; set; }
}
}