mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
17 lines
394 B
C#
17 lines
394 B
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace NewHorizons.External.Modules.TranslatorText
|
|
{
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public enum NomaiTextLocation
|
|
{
|
|
[EnumMember(Value = @"unspecified")] UNSPECIFIED = 0,
|
|
|
|
[EnumMember(Value = @"a")] A = 1,
|
|
|
|
[EnumMember(Value = @"b")] B = 2
|
|
}
|
|
}
|