edjournal/EliteDangerous.cs

10 lines
307 B
C#
Raw Normal View History

2021-08-25 18:24:44 +02:00
namespace EDJournal {
public class EliteDangerous {
/// <summary>
/// The ingame universe is 1286 years in the future. This is needed to convert dates
/// and times to ingame dates and times
/// </summary>
public static readonly int YearOffset = 1286;
}
}