You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
955 B
C#

/******************************************************************************/
/*
Project - MudBun
Publisher - Long Bunny Labs
http://LongBunnyLabs.com
Author - Ming-Lun "Allen" Chou
http://AllenChou.net
*/
/******************************************************************************/
namespace MudBun
{
public static class MudBun
{
public static readonly int MajorVersion = 1;
public static readonly int MinorVersion = 6;
public static readonly int Revision = 52;
#if MUDBUN_FREE
public static readonly string Suffix = "f";
public static readonly bool IsFreeVersion = true;
#else
public static readonly string Suffix = "";
public static readonly bool IsFreeVersion = false;
#endif
public static string Version =>
MajorVersion + "."
+ MinorVersion + "."
+ Revision
+ Suffix
+ (IsFreeVersion ? " (Trial)" : "");
}
}