2024-07-10 21:01:41 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.V1.Converter;
|
|
|
|
|
|
|
|
|
|
public sealed class ActionConverter() : EnumConverter<EAction>(Values)
|
|
|
|
|
{
|
|
|
|
|
private static readonly Dictionary<EAction, string> Values = new()
|
|
|
|
|
{
|
|
|
|
|
{ EAction.Esuna, "Esuna" },
|
2024-07-24 15:45:03 +02:00
|
|
|
|
{ EAction.Physick, "Physick" },
|
2024-07-20 19:09:51 +02:00
|
|
|
|
{ EAction.SiphonSnout, "Siphon Snout" },
|
2024-07-12 23:58:48 +02:00
|
|
|
|
{ EAction.RedGulal, "Red Gulal" },
|
|
|
|
|
{ EAction.YellowGulal, "Yellow Gulal" },
|
|
|
|
|
{ EAction.BlueGulal, "Blue Gulal" },
|
2024-07-10 21:01:41 +02:00
|
|
|
|
};
|
|
|
|
|
}
|