muffin v7.5.13
This commit is contained in:
parent
911ed68baa
commit
acf3e3cb18
69 changed files with 2731 additions and 1425 deletions
|
|
@ -0,0 +1,13 @@
|
|||
using System.Text.Json.Serialization;
|
||||
using Questionable.Model.Questing.Converter;
|
||||
|
||||
namespace Questionable.Model.Questing;
|
||||
|
||||
[JsonConverter(typeof(ArrivalModeConverter))]
|
||||
public enum EArrivalMode
|
||||
{
|
||||
Auto,
|
||||
StayMounted,
|
||||
Land,
|
||||
Dismount
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
using System.Text.Json.Serialization;
|
||||
using Questionable.Model.Questing.Converter;
|
||||
|
||||
namespace Questionable.Model.Questing;
|
||||
|
||||
[JsonConverter(typeof(TravelModeConverter))]
|
||||
public enum ETravelMode
|
||||
{
|
||||
Auto,
|
||||
OnFoot,
|
||||
GroundMount,
|
||||
Flying
|
||||
}
|
||||
|
|
@ -45,6 +45,10 @@ public sealed class QuestStep
|
|||
|
||||
public bool DisableNavmesh { get; set; }
|
||||
|
||||
public ETravelMode TravelMode { get; set; }
|
||||
|
||||
public EArrivalMode ArrivalMode { get; set; }
|
||||
|
||||
public bool? Mount { get; set; }
|
||||
|
||||
public bool MountRequired { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue