1
0
Fork 0
Questionable/Questionable.Model/Questing/EJumpType.cs

12 lines
231 B
C#
Raw Permalink Normal View History

2024-07-24 18:47:08 +00:00
using System.Text.Json.Serialization;
2024-08-02 16:30:21 +00:00
using Questionable.Model.Questing.Converter;
2024-07-24 18:47:08 +00:00
2024-08-02 16:30:21 +00:00
namespace Questionable.Model.Questing;
2024-07-24 18:47:08 +00:00
[JsonConverter(typeof(JumpTypeConverter))]
public enum EJumpType
{
SingleJump,
RepeatedJumps,
}