1
0
Fork 0
forked from aly/qstbak
qstbak/Questionable.Model/Questionable.Model.Questing.Converter/DialogueChoiceTypeConverter.cs
2026-08-17 20:27:25 +10:00

24 lines
1,014 B
C#

using System.Collections.Generic;
using SmartNav.Model.Converter;
namespace Questionable.Model.Questing.Converter;
public sealed class DialogueChoiceTypeConverter : EnumConverter<EDialogChoiceType>
{
private static readonly Dictionary<EDialogChoiceType, string> Values = new Dictionary<EDialogChoiceType, string>
{
{
EDialogChoiceType.YesNo,
global::_003CModule_003E._202C_200B_200E_200D_206A_200D_202D_206E_200E_206D_202C_200E_206A_202D_202E_206F_200C_206C_206B_206F_200E_202A_200E_200E_202B_202B_206D_202B_206D_200C_206C_200C_200E_202A_202C_200D_206E_202C_200B_202A_202E<string>(431163095)
},
{
EDialogChoiceType.List,
global::_003CModule_003E._202C_200B_200E_200D_206A_200D_202D_206E_200E_206D_202C_200E_206A_202D_202E_206F_200C_206C_206B_206F_200E_202A_200E_200E_202B_202B_206D_202B_206D_200C_206C_200C_200E_202A_202C_200D_206E_202C_200B_202A_202E<string>(-504112928)
}
};
public DialogueChoiceTypeConverter()
: base((IReadOnlyDictionary<EDialogChoiceType, string>)Values)
{
}
}