refactor: Dalamud.Game.Chat => Dalamud.Game.Text, move Sanitizer

This commit is contained in:
goat 2021-04-04 21:54:24 +02:00
parent 7996b64827
commit 3decb57b2c
38 changed files with 141 additions and 140 deletions

View file

@ -0,0 +1,16 @@
using System;
namespace Dalamud.Game.Text
{
public sealed class XivChatEntry {
public XivChatType Type { get; set; } = XivChatType.Debug;
public uint SenderId { get; set; }
public string Name { get; set; } = string.Empty;
public byte[] MessageBytes { get; set; }
public IntPtr Parameters { get; set; }
}
}