-
Notifications
You must be signed in to change notification settings - Fork 1
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
1e60e79
commit 1e993af
Showing
8 changed files
with
86 additions
and
103 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
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
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,34 @@ | ||
namespace FfxivStartupCommands; | ||
|
||
using Dalamud.Game; | ||
using Dalamud.IoC; | ||
using Dalamud.Plugin; | ||
using Dalamud.Plugin.Services; | ||
|
||
|
||
public class Services | ||
{ | ||
[PluginService] | ||
public static IDalamudPluginInterface PluginInterface { get; private set; } | ||
|
||
[PluginService] | ||
public static ICommandManager CommandManager { get; private set; } | ||
|
||
[PluginService] | ||
public static IClientState ClientState { get; private set; } | ||
|
||
[PluginService] | ||
public static IChatGui ChatGui { get; private set; } | ||
|
||
[PluginService] | ||
public static IGameGui GameGui { get; private set; } | ||
|
||
[PluginService] | ||
public static ISigScanner TargetModuleScanner { get; private set; } | ||
|
||
|
||
public static void Initialize(IDalamudPluginInterface dalamudPluginInterface) | ||
{ | ||
dalamudPluginInterface.Create<Services>(); | ||
} | ||
} |
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