Fix services using wrong namespaces

This commit is contained in:
Haselnussbomber 2025-11-12 21:49:28 +01:00
parent d4f1636dd2
commit c661faea6b
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1
16 changed files with 33 additions and 13 deletions

View file

@ -1,8 +1,8 @@
using System.Collections.Generic;
using Dalamud.Plugin.Services;
using Dalamud.Plugin.SelfTest;
namespace Dalamud.Plugin.SelfTest;
namespace Dalamud.Plugin.Services;
/// <summary>
/// Interface for registering and unregistering self-test steps from plugins.

View file

@ -2,9 +2,7 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.Threading;
using Dalamud.Plugin.Services;
namespace Dalamud.Game;
namespace Dalamud.Plugin.Services;
/// <summary>
/// A SigScanner facilitates searching for memory signatures in a given ProcessModule.

View file

@ -1,7 +1,7 @@
using Dalamud.Game.ClientState.Objects.Types;
using Dalamud.Plugin.Services;
namespace Dalamud.Game.ClientState.Objects;
namespace Dalamud.Plugin.Services;
/// <summary>
/// Get and set various kinds of targets for the player.
@ -37,13 +37,13 @@ public interface ITargetManager : IDalamudService
/// Set to null to clear the target.
/// </summary>
public IGameObject? SoftTarget { get; set; }
/// <summary>
/// Gets or sets the gpose target.
/// Set to null to clear the target.
/// </summary>
public IGameObject? GPoseTarget { get; set; }
/// <summary>
/// Gets or sets the mouseover nameplate target.
/// Set to null to clear the target.