Toast namespaces

This commit is contained in:
Raymond 2021-08-09 18:29:38 -04:00
parent bab8eb4182
commit 72e10771a5
7 changed files with 10 additions and 8 deletions

View file

@ -1,4 +1,4 @@
namespace Dalamud.Game.Internal.Gui.Toast namespace Dalamud.Game.Gui.Toast
{ {
/// <summary> /// <summary>
/// This class represents options that can be used with the <see cref="ToastGui"/> class for the quest toast variant. /// This class represents options that can be used with the <see cref="ToastGui"/> class for the quest toast variant.

View file

@ -1,4 +1,4 @@
namespace Dalamud.Game.Internal.Gui.Toast namespace Dalamud.Game.Gui.Toast
{ {
/// <summary> /// <summary>
/// The alignment of native quest toast windows. /// The alignment of native quest toast windows.

View file

@ -1,4 +1,4 @@
namespace Dalamud.Game.Internal.Gui.Toast namespace Dalamud.Game.Gui.Toast
{ {
/// <summary> /// <summary>
/// This class represents options that can be used with the <see cref="ToastGui"/> class. /// This class represents options that can be used with the <see cref="ToastGui"/> class.

View file

@ -1,4 +1,4 @@
namespace Dalamud.Game.Internal.Gui.Toast namespace Dalamud.Game.Gui.Toast
{ {
/// <summary> /// <summary>
/// The positioning of native toast windows. /// The positioning of native toast windows.

View file

@ -1,4 +1,4 @@
namespace Dalamud.Game.Internal.Gui.Toast namespace Dalamud.Game.Gui.Toast
{ {
/// <summary> /// <summary>
/// The speed at which native toast windows will persist. /// The speed at which native toast windows will persist.

View file

@ -2,11 +2,11 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using Dalamud.Game.Internal.Gui.Toast; using Dalamud.Game.Gui.Toast;
using Dalamud.Game.Text.SeStringHandling; using Dalamud.Game.Text.SeStringHandling;
using Dalamud.Hooking; using Dalamud.Hooking;
namespace Dalamud.Game.Internal.Gui namespace Dalamud.Game.Gui
{ {
/// <summary> /// <summary>
/// This class facilitates interacting with and creating native toast windows. /// This class facilitates interacting with and creating native toast windows.

View file

@ -1,6 +1,8 @@
using System; using System;
namespace Dalamud.Game.Internal.Gui using Dalamud.Game.Internal;
namespace Dalamud.Game.Gui
{ {
/// <summary> /// <summary>
/// An address resolver for the <see cref="ToastGui"/> class. /// An address resolver for the <see cref="ToastGui"/> class.