We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60167d3 commit 3b88c0cCopy full SHA for 3b88c0c
1 file changed
FFXIVClientStructs/FFXIV/Component/GUI/AtkComponentTextInput.cs
@@ -19,6 +19,8 @@ namespace FFXIVClientStructs.FFXIV.Component.GUI;
19
[StructLayout(LayoutKind.Explicit, Size = 0x600)]
20
public unsafe partial struct AtkComponentTextInput : ICreatable {
21
[FieldOffset(0x1F0)] public AtkUldComponentDataTextInput ComponentTextData;
22
+ [FieldOffset(0x250), Obsolete("Use ComponentTextData.MaxByte instead")] public uint MaxTextLength;
23
+ [FieldOffset(0x254), Obsolete("Use ComponentTextData.MaxChar instead")] public uint MaxTextLength2;
24
[FieldOffset(0x26C)] public ushort InputSanitizationFlags; // passed to SanitizeString
25
26
[FieldOffset(0x280)] public Utf8String UnkText01;
0 commit comments