Update XivChatEntry types and names (#1784)

This commit is contained in:
Haselnussbomber 2024-04-28 20:38:40 +02:00 committed by GitHub
parent 51c2f77812
commit b98337be4e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 33 additions and 41 deletions

View file

@ -1,5 +1,3 @@
using System;
using Dalamud.Game.Text.SeStringHandling;
namespace Dalamud.Game.Text;
@ -15,9 +13,9 @@ public sealed class XivChatEntry
public XivChatType Type { get; set; } = XivChatType.Debug;
/// <summary>
/// Gets or sets the sender ID.
/// Gets or sets the message timestamp.
/// </summary>
public uint SenderId { get; set; }
public int Timestamp { get; set; }
/// <summary>
/// Gets or sets the sender name.
@ -30,7 +28,7 @@ public sealed class XivChatEntry
public SeString Message { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the message parameters.
/// Gets or sets a value indicating whether new message sounds should be silenced or not.
/// </summary>
public IntPtr Parameters { get; set; }
public bool Silent { get; set; }
}