17 lines
351 B
C#

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