-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from SheepGoMeh/API9
[PR] API9
- Loading branch information
Showing
10 changed files
with
153 additions
and
163 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.