Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TypeFlags.cs
Go to the documentation of this file.
2
3internal enum TypeFlags
4{
5 None = 0,
6 Abstract = 1,
7 Reference = 2,
8 Special = 4,
10 CanBeTextValue = 0x10,
11 CanBeElementValue = 0x20,
12 HasCustomFormatter = 0x40,
13 AmbiguousDataType = 0x80,
14 IgnoreDefault = 0x200,
15 HasIsEmpty = 0x400,
18 UseReflection = 0x4000,
19 CollapseWhitespace = 0x8000,
20 OptionalValue = 0x10000,
21 CtorInaccessible = 0x20000,
23 GenericInterface = 0x80000,
24 Unsupported = 0x100000
25}