1
0
Fork 0
Questionable/Questionable.Model/V1/Converter/EmoteConverter.cs

27 lines
808 B
C#
Raw Normal View History

using System.Collections.Generic;
2024-05-27 19:54:34 +00:00
namespace Questionable.Model.V1.Converter;
2024-06-14 09:37:33 +00:00
public sealed class EmoteConverter() : EnumConverter<EEmote>(Values)
2024-05-27 19:54:34 +00:00
{
private static readonly Dictionary<EEmote, string> Values = new()
2024-05-27 19:54:34 +00:00
{
{ EEmote.Stretch, "stretch" },
{ EEmote.Wave, "wave" },
{ EEmote.Rally, "rally" },
{ EEmote.Deny, "deny" },
{ EEmote.Pray, "pray" },
{ EEmote.Slap, "slap" },
{ EEmote.Doubt, "doubt" },
{ EEmote.Psych, "psych" },
{ EEmote.Cheer, "cheer" },
{ EEmote.Happy, "happy" },
{ EEmote.Poke, "poke" },
{ EEmote.Flex, "flex" },
{ EEmote.Soothe, "soothe" },
2024-07-12 21:58:48 +00:00
{ EEmote.Me, "me" },
2024-07-13 19:58:41 +00:00
{ EEmote.Welcome, "welcome" },
{ EEmote.ImperialSalute, "imperialsalute" },
2024-05-27 19:54:34 +00:00
};
}