mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +01:00
27 lines
453 B
C#
27 lines
453 B
C#
namespace Dalamud.Console;
|
|
|
|
/// <summary>
|
|
/// Possible console argument types.
|
|
/// </summary>
|
|
internal enum ConsoleArgumentType
|
|
{
|
|
/// <summary>
|
|
/// A regular string.
|
|
/// </summary>
|
|
String,
|
|
|
|
/// <summary>
|
|
/// A signed integer.
|
|
/// </summary>
|
|
Integer,
|
|
|
|
/// <summary>
|
|
/// A floating point value.
|
|
/// </summary>
|
|
Float,
|
|
|
|
/// <summary>
|
|
/// A boolean value.
|
|
/// </summary>
|
|
Bool,
|
|
}
|