Questionable/Questionable.Model/V1/EInteractionType.cs

35 lines
608 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
using Questionable.Model.V1.Converter;
2024-05-26 15:43:33 +02:00
namespace Questionable.Model.V1;
[JsonConverter(typeof(InteractionTypeConverter))]
2024-06-14 11:37:33 +02:00
public enum EInteractionType
2024-05-26 15:43:33 +02:00
{
Interact,
WalkTo,
2024-05-26 21:45:26 +02:00
AttuneAethernetShard,
2024-05-26 15:43:33 +02:00
AttuneAetheryte,
AttuneAetherCurrent,
Combat,
UseItem,
EquipItem,
2024-05-29 00:17:19 +02:00
Say,
2024-05-26 15:43:33 +02:00
Emote,
Action,
2024-05-27 21:54:34 +02:00
WaitForObjectAtPosition,
WaitForManualProgress,
Duty,
SinglePlayerDuty,
Jump,
2024-07-24 20:47:08 +02:00
Dive,
/// <summary>
/// Needs to be manually continued.
/// </summary>
Instruction,
AcceptQuest,
CompleteQuest,
2024-05-26 15:43:33 +02:00
}