We have config at home.

This commit is contained in:
Ottermandias 2023-06-18 13:38:45 +02:00
parent d10cb3137f
commit 80ab57e96d
13 changed files with 487 additions and 62 deletions

View file

@ -0,0 +1,13 @@
using Glamourer.Designs;
using Penumbra.GameData.Actors;
namespace Glamourer.State;
public class ActorState
{
public ActorIdentifier Identifier { get; internal init; }
public DesignData Data { get; internal set; }
internal ActorState(ActorIdentifier identifier)
=> Identifier = identifier;
}