mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: register interfaces for provided services
This commit is contained in:
parent
4b9de31240
commit
4a1b220d4a
9 changed files with 46 additions and 20 deletions
20
Dalamud.Injector/Hacks.cs
Normal file
20
Dalamud.Injector/Hacks.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
using System;
|
||||
|
||||
// ReSharper disable once CheckNamespace
|
||||
namespace Dalamud;
|
||||
|
||||
// TODO: Get rid of this! Move StartInfo to another assembly, make this good
|
||||
|
||||
/// <summary>
|
||||
/// Class to initialize Service<T>s.
|
||||
/// </summary>
|
||||
internal static class ServiceManager
|
||||
{
|
||||
/// <summary>
|
||||
/// Indicates that the class is a service.
|
||||
/// </summary>
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class Service : Attribute
|
||||
{
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue