From 61b08a90f2ab6caa5d7455bd9fc0e2ea52f721ea Mon Sep 17 00:00:00 2001 From: Haselnussbomber Date: Thu, 31 Jul 2025 00:09:43 +0200 Subject: [PATCH] Move namespace --- Dalamud/Game/Addon/Lifecycle/AddonArgTypes/AddonArgs.cs | 2 +- Dalamud/Game/Gui/GameGui.cs | 2 +- Dalamud/Game/{Gui => }/NativeWrapper/AtkUnitBasePtr.cs | 2 +- Dalamud/Plugin/Services/IGameGui.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename Dalamud/Game/{Gui => }/NativeWrapper/AtkUnitBasePtr.cs (99%) diff --git a/Dalamud/Game/Addon/Lifecycle/AddonArgTypes/AddonArgs.cs b/Dalamud/Game/Addon/Lifecycle/AddonArgTypes/AddonArgs.cs index f069a0b86..8a97f5cc2 100644 --- a/Dalamud/Game/Addon/Lifecycle/AddonArgTypes/AddonArgs.cs +++ b/Dalamud/Game/Addon/Lifecycle/AddonArgTypes/AddonArgs.cs @@ -1,4 +1,4 @@ -using Dalamud.Game.Gui.NativeWrapper; +using Dalamud.Game.NativeWrapper; namespace Dalamud.Game.Addon.Lifecycle.AddonArgTypes; diff --git a/Dalamud/Game/Gui/GameGui.cs b/Dalamud/Game/Gui/GameGui.cs index f19513a7f..3d600b04a 100644 --- a/Dalamud/Game/Gui/GameGui.cs +++ b/Dalamud/Game/Gui/GameGui.cs @@ -1,6 +1,6 @@ using System.Runtime.InteropServices; -using Dalamud.Game.Gui.NativeWrapper; +using Dalamud.Game.NativeWrapper; using Dalamud.Game.Text.SeStringHandling.Payloads; using Dalamud.Hooking; using Dalamud.Interface.Utility; diff --git a/Dalamud/Game/Gui/NativeWrapper/AtkUnitBasePtr.cs b/Dalamud/Game/NativeWrapper/AtkUnitBasePtr.cs similarity index 99% rename from Dalamud/Game/Gui/NativeWrapper/AtkUnitBasePtr.cs rename to Dalamud/Game/NativeWrapper/AtkUnitBasePtr.cs index 94e1639da..df9dc31dd 100644 --- a/Dalamud/Game/Gui/NativeWrapper/AtkUnitBasePtr.cs +++ b/Dalamud/Game/NativeWrapper/AtkUnitBasePtr.cs @@ -3,7 +3,7 @@ using System.Runtime.InteropServices; using FFXIVClientStructs.FFXIV.Component.GUI; -namespace Dalamud.Game.Gui.NativeWrapper; +namespace Dalamud.Game.NativeWrapper; /// /// A wrapper for AtkUnitBase. diff --git a/Dalamud/Plugin/Services/IGameGui.cs b/Dalamud/Plugin/Services/IGameGui.cs index 12f69a8f4..77e2600e6 100644 --- a/Dalamud/Plugin/Services/IGameGui.cs +++ b/Dalamud/Plugin/Services/IGameGui.cs @@ -1,7 +1,7 @@ using System.Numerics; using Dalamud.Game.Gui; -using Dalamud.Game.Gui.NativeWrapper; +using Dalamud.Game.NativeWrapper; using Dalamud.Game.Text.SeStringHandling.Payloads; namespace Dalamud.Plugin.Services;