MacroMate, reworked macro copying, extra copying settings

This commit is contained in:
Asriel Camora
2024-07-27 01:32:47 -07:00
parent f2d03730ce
commit 95371739c4
7 changed files with 293 additions and 87 deletions
+2
View File
@@ -32,6 +32,7 @@ public sealed class Plugin : IDalamudPlugin
public Hooks Hooks { get; }
public Chat Chat { get; }
public CommunityMacros CommunityMacros { get; }
public Ipc Ipc { get; }
public AttributeCommandManager AttributeCommandManager { get; }
public Plugin(IDalamudPluginInterface pluginInterface)
@@ -44,6 +45,7 @@ public sealed class Plugin : IDalamudPlugin
Hooks = new();
Chat = new();
CommunityMacros = new();
Ipc = new();
AttributeCommandManager = new();
var assembly = Assembly.GetExecutingAssembly();