2022-05-22 18:57:05 -04: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; }
}
}