2024-05-29 19:22:58 +00:00
|
|
|
|
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
|
|
|
|
{
|
2024-05-29 19:22:58 +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" },
|
2024-05-29 19:22:58 +00:00
|
|
|
|
{ EEmote.Pray, "pray" },
|
2024-06-13 15:35:33 +00:00
|
|
|
|
{ EEmote.Slap, "slap" },
|
|
|
|
|
{ EEmote.Doubt, "doubt" },
|
|
|
|
|
{ EEmote.Psych, "psych" },
|
2024-05-27 19:54:34 +00:00
|
|
|
|
};
|
|
|
|
|
}
|