-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d941e24
commit efe8655
Showing
5 changed files
with
84 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using Dalamud.IoC; | ||
using Dalamud.Plugin; | ||
using Dalamud.Plugin.Services; | ||
|
||
namespace OofPlugin; | ||
|
||
public class Dalamud | ||
{ | ||
[PluginService] internal static IFramework Framework { get; private set; } = null!; | ||
[PluginService] internal static IDalamudPluginInterface PluginInterface { get; private set; } = null!; | ||
[PluginService] internal static ICommandManager CommandManager { get; private set; } = null!; | ||
[PluginService] internal static ICondition Condition { get; private set; } = null!; | ||
[PluginService] internal static IPartyList PartyList { get; private set; } = null!; | ||
|
||
[PluginService] public static ITextureProvider TextureProvider { get; private set; } = null!; | ||
[PluginService] public static IPluginLog Log { get; private set; } = null!; | ||
[PluginService] internal static IClientState ClientState { get; private set; } = null!; | ||
|
||
public static void Initialize(IDalamudPluginInterface pluginInterface) | ||
=> pluginInterface.Create<Dalamud>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters