2023-03-25 15:15:24 -04:00

17 lines
377 B
C#

using NewHorizons.External.Modules.SerializableData;
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;
}
}