mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
15 lines
415 B
C#
15 lines
415 B
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace NewHorizons.External.Modules.Props.Dialogue
|
|
{
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public enum FlashlightToggle
|
|
{
|
|
[EnumMember(Value = @"none")] None = -1,
|
|
[EnumMember(Value = @"turnOff")] TurnOff = 0,
|
|
[EnumMember(Value = @"turnOffThenOn")] TurnOffThenOn = 1,
|
|
}
|
|
}
|