Questionable/Questionable.Model/Questing/Converter/JumpTypeConverter.cs

14 lines
398 B
C#
Raw Normal View History

2024-07-24 18:47:08 +00:00
using System.Collections.Generic;
2024-08-02 16:30:21 +00:00
using Questionable.Model.Common.Converter;
2024-07-24 18:47:08 +00:00
2024-08-02 16:30:21 +00:00
namespace Questionable.Model.Questing.Converter;
2024-07-24 18:47:08 +00:00
public sealed class JumpTypeConverter() : EnumConverter<EJumpType>(Values)
{
private static readonly Dictionary<EJumpType, string> Values = new()
{
{ EJumpType.SingleJump, "SingleJump" },
{ EJumpType.RepeatedJumps, "RepeatedJumps" },
};
}