Add Ephemeral Config.

This commit is contained in:
Ottermandias 2023-11-17 17:09:29 +01:00
parent 9c8e9f5ead
commit b4b104f919
15 changed files with 202 additions and 85 deletions

View file

@ -15,13 +15,13 @@ namespace Glamourer.Gui.Tabs.ActorTab;
public class ActorSelector
{
private readonly Configuration _config;
private readonly EphemeralConfig _config;
private readonly ObjectManager _objects;
private readonly ActorService _actors;
private ActorIdentifier _identifier = ActorIdentifier.Invalid;
public ActorSelector(ObjectManager objects, ActorService actors, Configuration config)
public ActorSelector(ObjectManager objects, ActorService actors, EphemeralConfig config)
{
_objects = objects;
_actors = actors;