mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
11 lines
284 B
C#
11 lines
284 B
C#
using NewHorizons.Utility;
|
|
namespace NewHorizons.External.Modules.VariableSize
|
|
{
|
|
public class FunnelModule : VariableSizeModule
|
|
{
|
|
public string Target { get; set; }
|
|
public string Type { get; set; } = "Sand";
|
|
public MColor Tint { get; set; }
|
|
}
|
|
}
|