mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-21 07:17:45 +01:00
XivChatEntry should use SeString
This commit is contained in:
parent
85113e263f
commit
5c4ed3f715
7 changed files with 27 additions and 16 deletions
|
|
@ -1,5 +1,7 @@
|
|||
using System;
|
||||
|
||||
using Dalamud.Game.Text.SeStringHandling;
|
||||
|
||||
namespace Dalamud.Game.Text
|
||||
{
|
||||
/// <summary>
|
||||
|
|
@ -20,12 +22,12 @@ namespace Dalamud.Game.Text
|
|||
/// <summary>
|
||||
/// Gets or sets the sender name.
|
||||
/// </summary>
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public SeString Name { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the message bytes.
|
||||
/// Gets or sets the message.
|
||||
/// </summary>
|
||||
public byte[] MessageBytes { get; set; }
|
||||
public SeString Message { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the message parameters.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue