1
0
Fork 0
forked from aly/qstbak
qstbak/Questionable.Model/Questionable.Model.Questing.Converter/JumpTypeConverter.cs
2026-08-17 20:29:32 +10:00

24 lines
488 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,
"SingleJump"
},
{
EJumpType.RepeatedJumps,
"RepeatedJumps"
}
};
public JumpTypeConverter()
: base((IReadOnlyDictionary<EJumpType, string>)Values)
{
}
}