Add working links.

This commit is contained in:
Ottermandias 2024-01-26 16:45:31 +01:00
parent 282d6df165
commit 5992b86e4f
9 changed files with 31 additions and 11 deletions

View file

@ -1,5 +1,6 @@
using Dalamud.Plugin.Services;
using Glamourer.Designs;
using Glamourer.Designs.Links;
using Glamourer.Events;
using Glamourer.GameData;
using Glamourer.Interop;
@ -21,8 +22,9 @@ public sealed class StateManager(
HumanModelList _humans,
IClientState _clientState,
Configuration config,
JobChangeState jobChange)
: StateEditor(editor, applier, @event, jobChange, config, items), IReadOnlyDictionary<ActorIdentifier, ActorState>
JobChangeState jobChange,
DesignMerger merger)
: StateEditor(editor, applier, @event, jobChange, config, items, merger), IReadOnlyDictionary<ActorIdentifier, ActorState>
{
private readonly Dictionary<ActorIdentifier, ActorState> _states = [];