Initial commit: AetherBags + KamiToolKit for FC Gitea
Debug Build and Test / Build against Latest Dalamud (push) Has been cancelled
Debug Build and Test / Build against Staging Dalamud (push) Has been cancelled

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-08 14:46:31 -05:00
commit 8db4ce6094
375 changed files with 34124 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
namespace KamiToolKit.Enums;
[Flags]
public enum TextInputFlags : ushort {
Capitalize = 0x1,
Mask = 0x2,
EnableDictionary = 0x4,
EnableHistory = 0x8,
EnableIme = 0x10,
EscapeClears = 0x20,
AllowUpperCase = 0x40,
AllowLowerCase = 0x80,
AllowNumberInput = 0x100,
AllowSymbolInput = 0x200,
WordWrap = 0x400,
MultiLine = 0x800,
AutoMaxWidth = 0x1000,
}