2022-05-22 00:49:09 -04:00

16 lines
364 B
C#

using NewHorizons.Utility;
using System.ComponentModel;
namespace NewHorizons.External.Modules.VariableSize
{
public class FunnelModule : VariableSizeModule
{
public string Target { get; set; }
[DefaultValue("Sand")]
public string Type { get; set; } = "Sand";
public MColor Tint { get; set; }
}
}