Dalamud/Dalamud/Game/Gui/Toast/QuestToastPosition.cs
2021-08-10 08:04:13 -04:00

23 lines
524 B
C#

namespace Dalamud.Game.Gui.Toast
{
/// <summary>
/// The alignment of native quest toast windows.
/// </summary>
public enum QuestToastPosition
{
/// <summary>
/// The toast will be aligned screen centre.
/// </summary>
Centre = 0,
/// <summary>
/// The toast will be aligned screen right.
/// </summary>
Right = 1,
/// <summary>
/// The toast will be aligned screen left.
/// </summary>
Left = 2,
}
}