Skip to content

Commit

Permalink
😔
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaksuhn committed Nov 22, 2024
1 parent 02d5568 commit 1324540
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Automaton/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,17 @@ public class Plugin : IDalamudPlugin

public static readonly HashSet<Tweak> Tweaks = [];
internal TaskManager TaskManager;
internal NavmeshIPC Navmesh;
internal AddonObserver AddonObserver;

internal Provider Provider;
internal NavmeshIPC Navmesh;
internal AutoRetainerApi AutoRetainerAPI;
internal LifestreamIPC Lifestream;
internal DeliverooIPC Deliveroo;
internal AutoRetainerIPC AutoRetainer;
internal Memory Memory = null!;
internal bool UsingARPostProcess;

internal Memory Memory = null!;
internal bool MemoryError;

public Plugin(IDalamudPluginInterface pluginInterface)
Expand Down Expand Up @@ -73,6 +76,7 @@ public Plugin(IDalamudPluginInterface pluginInterface)

AddonObserver = new();
TaskManager = new();
Provider = new();
Navmesh = new();
AutoRetainerAPI = new();
Lifestream = new();
Expand Down

0 comments on commit 1324540

Please sign in to comment.