mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
fix: Missing service types causing injection failures
This commit is contained in:
parent
6a69a6e197
commit
8ab7b59ae4
2 changed files with 4 additions and 2 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
using Dalamud.Plugin.Services;
|
||||||
|
|
||||||
namespace Dalamud.Plugin.SelfTest;
|
namespace Dalamud.Plugin.SelfTest;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -44,7 +46,7 @@ namespace Dalamud.Plugin.SelfTest;
|
||||||
/// }
|
/// }
|
||||||
/// </code>
|
/// </code>
|
||||||
/// </example>
|
/// </example>
|
||||||
public interface ISelfTestRegistry
|
public interface ISelfTestRegistry : IDalamudService
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Registers the self-test steps for this plugin.
|
/// Registers the self-test steps for this plugin.
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ namespace Dalamud.Plugin.Services;
|
||||||
/// <c>dalamud://plugin/{PLUGIN_INTERNAL_NAME}/...</c> namespace.
|
/// <c>dalamud://plugin/{PLUGIN_INTERNAL_NAME}/...</c> namespace.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Experimental("DAL_RPC", Message = "This service will be finalized around 7.41 and may change before then.")]
|
[Experimental("DAL_RPC", Message = "This service will be finalized around 7.41 and may change before then.")]
|
||||||
public interface IPluginLinkHandler
|
public interface IPluginLinkHandler : IDalamudService
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A delegate containing the received URI.
|
/// A delegate containing the received URI.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue