Merge pull request #2424 from Haselnussbomber/fix-service-namespaces
Some checks failed
Build Dalamud / Build on Windows (push) Has been cancelled
Build Dalamud / Check API Compatibility (push) Has been cancelled
Build Dalamud / Deploy dalamud-distrib staging (push) Has been cancelled

[API14] Fix services using wrong namespaces
This commit is contained in:
goat 2025-12-04 00:56:10 +01:00 committed by GitHub
commit 5bb212bfaa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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.