forked from aly/qstbak
24 lines
961 B
C#
24 lines
961 B
C#
using System.Collections.Generic;
|
|
using SmartNav.Model.Converter;
|
|
|
|
namespace Questionable.Model.Questing.Converter;
|
|
|
|
public sealed class JumpTypeConverter : EnumConverter<EJumpType>
|
|
{
|
|
private static readonly Dictionary<EJumpType, string> Values = new Dictionary<EJumpType, string>
|
|
{
|
|
{
|
|
EJumpType.SingleJump,
|
|
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>(-1386886680)
|
|
},
|
|
{
|
|
EJumpType.RepeatedJumps,
|
|
global::_003CModule_003E._200F_200E_200D_202C_206F_200B_200B_206E_206B_202D_202C_202C_200B_206C_206B_202E_206D_202A_206B_202B_202B_206E_206C_202B_200D_206B_206C_200D_200B_200E_206C_206F_200D_202A_206C_206F_200B_202C_206A_202D_202E<string>(472729139)
|
|
}
|
|
};
|
|
|
|
public JumpTypeConverter()
|
|
: base((IReadOnlyDictionary<EJumpType, string>)Values)
|
|
{
|
|
}
|
|
}
|