BITFALL/Assets/Polaris - Low Poly Ecosystem/Polaris - Low Poly Terrain .../Runtime/Scripts/Utilities/GVersionInfo.cs

57 lines
1.1 KiB
C#
Raw Normal View History

2023-12-30 17:37:48 +08:00
namespace Pinwheel.Griffin
{
/// <summary>
/// Utility class contains product info
/// </summary>
public static class GVersionInfo
{
public static float Number
{
get
{
return 2020.2f;
}
}
public static string Code
{
get
{
return "2020.2.18";
}
}
public static string ProductName
{
get
{
return "Polaris - Low Poly Terrain Engine";
}
}
public static string ProductNameAndVersion
{
get
{
return string.Format("{0} {1}", ProductName, Code);
}
}
public static string ProductNameShort
{
get
{
return "Polaris";
}
}
public static string ProductNameAndVersionShort
{
get
{
return string.Format("{0} {1}", ProductNameShort, Code);
}
}
}
}