Files
GoKart/trunk/Common/Constants.cs
Andrew 6d74d5b59e source
Created by: Andrew
2016-08-27 22:43:23 -04:00

20 lines
407 B
C#

namespace KartExtreme
{
public static class Constants
{
public static readonly Version Version = new Version()
{
Localisation = 5002,
Major = 1,
Minor = 26
};
}
public struct Version
{
public short Localisation { get; set; }
public short Major { get; set; }
public short Minor { get; set; }
}
}