Dalamud/Dalamud/Plugin/Services/IDalamudService.cs
2025-10-19 23:19:48 +02:00

10 lines
281 B
C#

namespace Dalamud.Plugin.Services;
/// <summary>
/// Marker interface for Dalamud services.
/// </summary>
/// <remarks>
/// This interface is implemented by all services provided through Dalamud's
/// dependency injection system.
/// </remarks>
public interface IDalamudService;