mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 05:13:40 +01:00
Add a ToString() method to MapLinkPayload.cs
This commit is contained in:
parent
dd3fd27f4d
commit
842cc607ac
1 changed files with 5 additions and 0 deletions
|
|
@ -65,6 +65,11 @@ namespace Dalamud.Game.Chat.SeStringHandling.Payloads
|
||||||
//}
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return $"{Type} - TerritoryTypeId: {TerritoryTypeId}, MapId: {MapId}, RawX: {RawX}, RawY: {RawY}";
|
||||||
|
}
|
||||||
|
|
||||||
protected override void ProcessChunkImpl(BinaryReader reader, long endOfStream)
|
protected override void ProcessChunkImpl(BinaryReader reader, long endOfStream)
|
||||||
{
|
{
|
||||||
(TerritoryTypeId, MapId) = GetPackedIntegers(reader);
|
(TerritoryTypeId, MapId) = GetPackedIntegers(reader);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue