Dalamud/Dalamud/Game/Internal/Gui/Toast/ToastSpeed.cs
2021-05-30 07:15:47 -04:00

18 lines
465 B
C#
Executable file

namespace Dalamud.Game.Internal.Gui.Toast
{
/// <summary>
/// The speed at which native toast windows will persist.
/// </summary>
public enum ToastSpeed : byte
{
/// <summary>
/// The toast will take longer to disappear (around four seconds).
/// </summary>
Slow = 0,
/// <summary>
/// The toast will disappear more quickly (around two seconds).
/// </summary>
Fast = 1,
}
}