-
Notifications
You must be signed in to change notification settings - Fork 14
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
98b8e9b
commit bff8789
Showing
9 changed files
with
146 additions
and
151 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using Dalamud.IoC; | ||
using Dalamud.Plugin; | ||
using Dalamud.Plugin.Services; | ||
|
||
namespace Visibility; | ||
|
||
public class Service | ||
{ | ||
[PluginService] | ||
public static DalamudPluginInterface PluginInterface { get; set; } = null!; | ||
|
||
[PluginService] | ||
public static ICommandManager CommandManager { get; set; } = null!; | ||
|
||
[PluginService] | ||
public static IChatGui ChatGui { get; set; } = null!; | ||
|
||
[PluginService] | ||
public static IDataManager DataManager { get; set; } = null!; | ||
|
||
[PluginService] | ||
public static IGameGui GameGui { get; set; } = null!; | ||
|
||
[PluginService] | ||
public static IClientState ClientState { get; set; } = null!; | ||
|
||
[PluginService] | ||
public static IFramework Framework { get; set; } = null!; | ||
|
||
[PluginService] | ||
public static IObjectTable ObjectTable { get; set; } = null!; | ||
|
||
[PluginService] | ||
public static ICondition Condition { get; set; } = null!; | ||
|
||
[PluginService] | ||
public static IPluginLog PluginLog { get; set; } = null!; | ||
} |
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
Oops, something went wrong.