mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
38 lines
918 B
C#
38 lines
918 B
C#
using System.Runtime.Serialization;
|
|
using NewHorizons.Utility;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace NewHorizons.External.Modules.VariableSize
|
|
{
|
|
public enum FunnelType
|
|
{
|
|
[EnumMember(Value = @"sand")] Sand = 0,
|
|
|
|
[EnumMember(Value = @"water")] Water = 1,
|
|
|
|
[EnumMember(Value = @"lava")] Lava = 2,
|
|
|
|
[EnumMember(Value = @"star")] Star = 3
|
|
}
|
|
|
|
[JsonObject]
|
|
public class FunnelModule : VariableSizeModule
|
|
{
|
|
/// <summary>
|
|
/// The planet the funnel will flow to
|
|
/// </summary>
|
|
public string target;
|
|
|
|
/// <summary>
|
|
/// Tint of the funnel
|
|
/// </summary>
|
|
public MColor tint;
|
|
|
|
/// <summary>
|
|
/// Type of fluid the funnel transfers
|
|
/// </summary>
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public FunnelType type = FunnelType.Sand;
|
|
}
|
|
} |