Archived
1
0
This repository has been archived on 2021-10-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nonabgs/Journal/EliteDangerous.cs
2021-07-09 11:03:30 +02:00

16 lines
430 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NonaBGS.Journal {
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;
}
}