mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
22 lines
450 B
C#
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,
|
|
}
|