mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 13:14:17 +01:00
23 lines
524 B
C#
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,
|
|
}
|
|
}
|