Rename namespace PlayerState to Player

This commit is contained in:
Haselnussbomber 2025-11-17 19:29:48 +01:00
parent 2cf869872d
commit 64d4f7061a
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1
16 changed files with 34 additions and 22 deletions

View file

@ -5,6 +5,7 @@ using System.Runtime.CompilerServices;
using Dalamud.Game.ClientState.Objects.Enums;
using Dalamud.Game.ClientState.Objects.SubKinds;
using Dalamud.Game.ClientState.Objects.Types;
using Dalamud.Game.Player;
using Dalamud.IoC;
using Dalamud.IoC.Internal;
using Dalamud.Plugin.Services;
@ -32,7 +33,7 @@ internal sealed partial class ObjectTable : IServiceType, IObjectTable
private static int objectTableLength;
[ServiceManager.ServiceDependency]
private readonly PlayerState.PlayerState playerState = Service<PlayerState.PlayerState>.Get();
private readonly PlayerState playerState = Service<PlayerState>.Get();
private readonly CachedEntry[] cachedObjectTable;