mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
19 lines
440 B
C#
19 lines
440 B
C#
using System.Collections.Generic;
|
|
using ACE.Entity.Enum;
|
|
|
|
namespace ACE.Entity
|
|
{
|
|
public class EmoteSet
|
|
{
|
|
public EmoteCategory Category;
|
|
public float Probability;
|
|
public uint ClassID;
|
|
public string Quest;
|
|
public uint Style;
|
|
public uint Substate;
|
|
public uint VendorType;
|
|
public float MinHealth;
|
|
public float MaxHealth;
|
|
public List<Emote> Emotes;
|
|
}
|
|
}
|