From 72e10771a550dc88848a4b8cd752d49e89953669 Mon Sep 17 00:00:00 2001 From: Raymond Date: Mon, 9 Aug 2021 18:29:38 -0400 Subject: [PATCH] Toast namespaces --- Dalamud/Game/{Internal => }/Gui/Toast/QuestToastOptions.cs | 2 +- Dalamud/Game/{Internal => }/Gui/Toast/QuestToastPosition.cs | 2 +- Dalamud/Game/{Internal => }/Gui/Toast/ToastOptions.cs | 2 +- Dalamud/Game/{Internal => }/Gui/Toast/ToastPosition.cs | 2 +- Dalamud/Game/{Internal => }/Gui/Toast/ToastSpeed.cs | 2 +- Dalamud/Game/{Internal => }/Gui/ToastGui.cs | 4 ++-- Dalamud/Game/{Internal => }/Gui/ToastGuiAddressResolver.cs | 4 +++- 7 files changed, 10 insertions(+), 8 deletions(-) rename Dalamud/Game/{Internal => }/Gui/Toast/QuestToastOptions.cs (96%) mode change 100755 => 100644 rename Dalamud/Game/{Internal => }/Gui/Toast/QuestToastPosition.cs (92%) mode change 100755 => 100644 rename Dalamud/Game/{Internal => }/Gui/Toast/ToastOptions.cs (92%) mode change 100755 => 100644 rename Dalamud/Game/{Internal => }/Gui/Toast/ToastPosition.cs (89%) mode change 100755 => 100644 rename Dalamud/Game/{Internal => }/Gui/Toast/ToastSpeed.cs (90%) mode change 100755 => 100644 rename Dalamud/Game/{Internal => }/Gui/ToastGui.cs (99%) mode change 100755 => 100644 rename Dalamud/Game/{Internal => }/Gui/ToastGuiAddressResolver.cs (95%) mode change 100755 => 100644 diff --git a/Dalamud/Game/Internal/Gui/Toast/QuestToastOptions.cs b/Dalamud/Game/Gui/Toast/QuestToastOptions.cs old mode 100755 new mode 100644 similarity index 96% rename from Dalamud/Game/Internal/Gui/Toast/QuestToastOptions.cs rename to Dalamud/Game/Gui/Toast/QuestToastOptions.cs index 34fa674e7..11f09a523 --- a/Dalamud/Game/Internal/Gui/Toast/QuestToastOptions.cs +++ b/Dalamud/Game/Gui/Toast/QuestToastOptions.cs @@ -1,4 +1,4 @@ -namespace Dalamud.Game.Internal.Gui.Toast +namespace Dalamud.Game.Gui.Toast { /// /// This class represents options that can be used with the class for the quest toast variant. diff --git a/Dalamud/Game/Internal/Gui/Toast/QuestToastPosition.cs b/Dalamud/Game/Gui/Toast/QuestToastPosition.cs old mode 100755 new mode 100644 similarity index 92% rename from Dalamud/Game/Internal/Gui/Toast/QuestToastPosition.cs rename to Dalamud/Game/Gui/Toast/QuestToastPosition.cs index a6ea499b1..cc107ab6e --- a/Dalamud/Game/Internal/Gui/Toast/QuestToastPosition.cs +++ b/Dalamud/Game/Gui/Toast/QuestToastPosition.cs @@ -1,4 +1,4 @@ -namespace Dalamud.Game.Internal.Gui.Toast +namespace Dalamud.Game.Gui.Toast { /// /// The alignment of native quest toast windows. diff --git a/Dalamud/Game/Internal/Gui/Toast/ToastOptions.cs b/Dalamud/Game/Gui/Toast/ToastOptions.cs old mode 100755 new mode 100644 similarity index 92% rename from Dalamud/Game/Internal/Gui/Toast/ToastOptions.cs rename to Dalamud/Game/Gui/Toast/ToastOptions.cs index 5be757393..0939bb5bb --- a/Dalamud/Game/Internal/Gui/Toast/ToastOptions.cs +++ b/Dalamud/Game/Gui/Toast/ToastOptions.cs @@ -1,4 +1,4 @@ -namespace Dalamud.Game.Internal.Gui.Toast +namespace Dalamud.Game.Gui.Toast { /// /// This class represents options that can be used with the class. diff --git a/Dalamud/Game/Internal/Gui/Toast/ToastPosition.cs b/Dalamud/Game/Gui/Toast/ToastPosition.cs old mode 100755 new mode 100644 similarity index 89% rename from Dalamud/Game/Internal/Gui/Toast/ToastPosition.cs rename to Dalamud/Game/Gui/Toast/ToastPosition.cs index 4c01cb709..14f489711 --- a/Dalamud/Game/Internal/Gui/Toast/ToastPosition.cs +++ b/Dalamud/Game/Gui/Toast/ToastPosition.cs @@ -1,4 +1,4 @@ -namespace Dalamud.Game.Internal.Gui.Toast +namespace Dalamud.Game.Gui.Toast { /// /// The positioning of native toast windows. diff --git a/Dalamud/Game/Internal/Gui/Toast/ToastSpeed.cs b/Dalamud/Game/Gui/Toast/ToastSpeed.cs old mode 100755 new mode 100644 similarity index 90% rename from Dalamud/Game/Internal/Gui/Toast/ToastSpeed.cs rename to Dalamud/Game/Gui/Toast/ToastSpeed.cs index 620c65301..0f54df273 --- a/Dalamud/Game/Internal/Gui/Toast/ToastSpeed.cs +++ b/Dalamud/Game/Gui/Toast/ToastSpeed.cs @@ -1,4 +1,4 @@ -namespace Dalamud.Game.Internal.Gui.Toast +namespace Dalamud.Game.Gui.Toast { /// /// The speed at which native toast windows will persist. diff --git a/Dalamud/Game/Internal/Gui/ToastGui.cs b/Dalamud/Game/Gui/ToastGui.cs old mode 100755 new mode 100644 similarity index 99% rename from Dalamud/Game/Internal/Gui/ToastGui.cs rename to Dalamud/Game/Gui/ToastGui.cs index 4c1ce497f..c16066a09 --- a/Dalamud/Game/Internal/Gui/ToastGui.cs +++ b/Dalamud/Game/Gui/ToastGui.cs @@ -2,11 +2,11 @@ using System; using System.Collections.Generic; using System.Text; -using Dalamud.Game.Internal.Gui.Toast; +using Dalamud.Game.Gui.Toast; using Dalamud.Game.Text.SeStringHandling; using Dalamud.Hooking; -namespace Dalamud.Game.Internal.Gui +namespace Dalamud.Game.Gui { /// /// This class facilitates interacting with and creating native toast windows. diff --git a/Dalamud/Game/Internal/Gui/ToastGuiAddressResolver.cs b/Dalamud/Game/Gui/ToastGuiAddressResolver.cs old mode 100755 new mode 100644 similarity index 95% rename from Dalamud/Game/Internal/Gui/ToastGuiAddressResolver.cs rename to Dalamud/Game/Gui/ToastGuiAddressResolver.cs index 93b8eba04..adf5e3190 --- a/Dalamud/Game/Internal/Gui/ToastGuiAddressResolver.cs +++ b/Dalamud/Game/Gui/ToastGuiAddressResolver.cs @@ -1,6 +1,8 @@ using System; -namespace Dalamud.Game.Internal.Gui +using Dalamud.Game.Internal; + +namespace Dalamud.Game.Gui { /// /// An address resolver for the class.