mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 05:13:40 +01:00
IChatGui Add Readonly RegisteredLinkHandlers (#1487)
This commit is contained in:
parent
822e26ef93
commit
0f349bb3dd
2 changed files with 14 additions and 1 deletions
|
|
@ -1,4 +1,6 @@
|
|||
using Dalamud.Game.Gui;
|
||||
using System.Collections.Generic;
|
||||
|
||||
using Dalamud.Game.Gui;
|
||||
using Dalamud.Game.Text;
|
||||
using Dalamud.Game.Text.SeStringHandling;
|
||||
|
||||
|
|
@ -76,6 +78,11 @@ public interface IChatGui
|
|||
/// Gets the flags of the last linked item.
|
||||
/// </summary>
|
||||
public byte LastLinkedItemFlags { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the dictionary of Dalamud Link Handlers.
|
||||
/// </summary>
|
||||
public IReadOnlyDictionary<(string PluginName, uint CommandId), Action<uint, SeString>> RegisteredLinkHandlers { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Queue a chat message. Dalamud will send queued messages on the next framework event.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue