mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Fix Replace Animation Hook * SoundTable * Numerous Dat Updates * Added highres and language export commands
16 lines
492 B
C#
16 lines
492 B
C#
using System.IO;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class ChatEmoteData : IUnpackable
|
|
{
|
|
public string MyEmote; // What the emote string is to the character doing the emote
|
|
public string OtherEmote; // What the emote string is to other characters
|
|
|
|
public void Unpack(BinaryReader reader)
|
|
{
|
|
MyEmote = reader.ReadPString(); reader.AlignBoundary();
|
|
OtherEmote = reader.ReadPString(); reader.AlignBoundary();
|
|
}
|
|
}
|
|
}
|