ace/Source/ACE.DatLoader/Entity/ChatEmoteData.cs
OptimShi cad0e661d0 Dat updates (#847)
* Fix Replace Animation Hook

* SoundTable

* Numerous Dat Updates

* Added highres and language export commands
2018-07-05 07:50:42 -05:00

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();
}
}
}