mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 05:13:40 +01:00
18 lines
465 B
C#
Executable file
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,
|
|
}
|
|
}
|