Dalamud/Dalamud/Game/Gui/Toast/QuestToastPosition.cs

22 lines
450 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,
}