mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
17 lines
339 B
C#
17 lines
339 B
C#
namespace Dalamud.Game.Gui.Toast;
|
|
|
|
/// <summary>
|
|
/// The positioning of native toast windows.
|
|
/// </summary>
|
|
public enum ToastPosition : byte
|
|
{
|
|
/// <summary>
|
|
/// The toast will be towards the bottom.
|
|
/// </summary>
|
|
Bottom = 0,
|
|
|
|
/// <summary>
|
|
/// The toast will be towards the top.
|
|
/// </summary>
|
|
Top = 1,
|
|
}
|