"""апгрейд""" QuickDialogSystem (#133)

* It's a surprise tool that will help us later

* Are you feeling it now mr. krabs?

* ой блять

* транслате
This commit is contained in:
RedFoxIV
2024-02-27 14:58:54 +03:00
committed by GitHub
parent aeac51afe6
commit 45584a3337
6 changed files with 550 additions and 22 deletions

View File

@@ -1,4 +1,4 @@
using Robust.Shared.Serialization;
using Robust.Shared.Serialization;
namespace Content.Shared.Administration;
@@ -125,6 +125,10 @@ public enum QuickDialogEntryType
/// </summary>
Float,
/// <summary>
/// Any integer from 0 to 65535, but the user has to enter it in a hexadecimal format.
/// </summary>
Hex16,
/// <summary>
/// Maximum of 100 characters string.
/// </summary>
ShortText,
@@ -132,4 +136,12 @@ public enum QuickDialogEntryType
/// Maximum of 2,000 characters string.
/// </summary>
LongText,
/// <summary>
/// You'll never guess this one.
/// </summary>
Boolean,
/// <summary>
/// No control will be shown, only the prompt label.
/// </summary>
Void
}