Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DaylightTime.cs
Go to the documentation of this file.
2
3public class DaylightTime
4{
5 private readonly DateTime _start;
6
7 private readonly DateTime _end;
8
9 private readonly TimeSpan _delta;
10
12
13 public DateTime End => _end;
14
16
18 {
19 _start = start;
20 _end = end;
21 _delta = delta;
22 }
23}
DaylightTime(DateTime start, DateTime end, TimeSpan delta)