17 lines
385 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; }
}
}