20 lines
320 B
C#
20 lines
320 B
C#
using System.Text.Json.Serialization;
|
|
using Questionable.Model.V1.Converter;
|
|
|
|
namespace Questionable.Model.V1;
|
|
|
|
[JsonConverter(typeof(EmoteConverter))]
|
|
public enum EEmote
|
|
{
|
|
None = 0,
|
|
|
|
Stretch = 37,
|
|
Wave = 16,
|
|
Rally = 34,
|
|
Deny = 25,
|
|
Pray = 58,
|
|
Slap = 111,
|
|
Doubt = 12,
|
|
Psych = 30,
|
|
}
|