2024-03-05 17:34:41 +08:00
|
|
|
#if GRIFFIN
|
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
|
|
|
|
{
|
2024-03-05 17:34:41 +08:00
|
|
|
return 2021.1f;
|
2023-12-30 17:37:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static string Code
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2024-03-05 17:34:41 +08:00
|
|
|
return "2021.1.18";
|
2023-12-30 17:37:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-03-05 17:34:41 +08:00
|
|
|
#endif
|