Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CodePageDataItem.cs
Go to the documentation of this file.
1namespace System.Text;
2
3internal sealed class CodePageDataItem
4{
5 public int UIFamilyCodePage { get; }
6
7 public string WebName { get; }
8
9 public string HeaderName { get; }
10
11 public string BodyName { get; }
12
13 public string DisplayName { get; }
14
15 public uint Flags { get; }
16
17 internal CodePageDataItem(int uiFamilyCodePage, string webName, string headerName, string bodyName, string displayName, uint flags)
18 {
19 UIFamilyCodePage = uiFamilyCodePage;
20 WebName = webName;
21 HeaderName = headerName;
22 BodyName = bodyName;
23 DisplayName = displayName;
24 Flags = flags;
25 }
26}
CodePageDataItem(int uiFamilyCodePage, string webName, string headerName, string bodyName, string displayName, uint flags)