Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ParseFlags.cs
Go to the documentation of this file.
1namespace System;
2
3[Flags]
4internal enum ParseFlags
5{
6 HaveYear = 1,
7 HaveMonth = 2,
8 HaveDay = 4,
9 HaveHour = 8,
10 HaveMinute = 0x10,
11 HaveSecond = 0x20,
12 HaveTime = 0x40,
13 HaveDate = 0x80,
14 TimeZoneUsed = 0x100,
15 TimeZoneUtc = 0x200,
16 ParsedMonthName = 0x400,
17 CaptureOffset = 0x800,
18 YearDefault = 0x1000,
19 Rfc1123Pattern = 0x2000,
20 UtcSortPattern = 0x4000
21}