mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-17 21:37:43 +01:00
Fix some warnings
This commit is contained in:
parent
cc91916574
commit
6a69a6e197
4 changed files with 22 additions and 20 deletions
|
|
@ -6,7 +6,7 @@ namespace Dalamud.Plugin.Services;
|
|||
|
||||
/// <summary>
|
||||
/// A service to allow plugins to subscribe to dalamud:// URIs targeting them. Plugins will receive any URI sent to the
|
||||
/// <code>dalamud://plugin/{PLUGIN_INTERNAL_NAME}/...</code> namespace.
|
||||
/// <c>dalamud://plugin/{PLUGIN_INTERNAL_NAME}/...</c> namespace.
|
||||
/// </summary>
|
||||
[Experimental("DAL_RPC", Message = "This service will be finalized around 7.41 and may change before then.")]
|
||||
public interface IPluginLinkHandler
|
||||
|
|
@ -14,7 +14,8 @@ public interface IPluginLinkHandler
|
|||
/// <summary>
|
||||
/// A delegate containing the received URI.
|
||||
/// </summary>
|
||||
delegate void PluginUriReceived(DalamudUri uri);
|
||||
/// <param name="uri">The URI opened by the user.</param>
|
||||
public delegate void PluginUriReceived(DalamudUri uri);
|
||||
|
||||
/// <summary>
|
||||
/// The event fired when a URI targeting this plugin is received.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue