mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 16:57:22 +01:00
configuration rework
This commit is contained in:
parent
f389bed4e1
commit
7c97d1994c
50 changed files with 722 additions and 275 deletions
|
|
@ -10,7 +10,7 @@ namespace MareSynchronos.Managers;
|
|||
|
||||
public class TransientResourceManager : MediatorSubscriberBase, IDisposable
|
||||
{
|
||||
private readonly ConfigurationService _configurationService;
|
||||
private readonly TransientConfigService _configurationService;
|
||||
private readonly DalamudUtil _dalamudUtil;
|
||||
|
||||
public IntPtr[] PlayerRelatedPointers = Array.Empty<IntPtr>();
|
||||
|
|
@ -19,7 +19,7 @@ public class TransientResourceManager : MediatorSubscriberBase, IDisposable
|
|||
|
||||
private ConcurrentDictionary<IntPtr, HashSet<string>> TransientResources { get; } = new();
|
||||
private ConcurrentDictionary<ObjectKind, HashSet<string>> SemiTransientResources { get; } = new();
|
||||
public TransientResourceManager(ConfigurationService configurationService, DalamudUtil dalamudUtil, MareMediator mediator) : base(mediator)
|
||||
public TransientResourceManager(TransientConfigService configurationService, DalamudUtil dalamudUtil, MareMediator mediator) : base(mediator)
|
||||
{
|
||||
_configurationService = configurationService;
|
||||
_dalamudUtil = dalamudUtil;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue