Add empty ServiceConstructor to PlayerState

This commit is contained in:
Haselnussbomber 2025-11-17 20:58:14 +01:00
parent 05f31265eb
commit cb441631e1
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1

View file

@ -23,6 +23,11 @@ namespace Dalamud.Game.Player;
[ResolveVia<IPlayerState>] [ResolveVia<IPlayerState>]
internal unsafe class PlayerState : IServiceType, IPlayerState internal unsafe class PlayerState : IServiceType, IPlayerState
{ {
[ServiceManager.ServiceConstructor]
private PlayerState()
{
}
/// <inheritdoc/> /// <inheritdoc/>
public bool IsLoaded => CSPlayerState.Instance()->IsLoaded; public bool IsLoaded => CSPlayerState.Instance()->IsLoaded;