mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-11 13:04:17 -05:00
15 lines
359 B
C#
15 lines
359 B
C#
|
|
namespace VRM
|
|
{
|
|
public static class VRMVersion
|
|
{
|
|
public const int MAJOR = 0;
|
|
public const int MINOR = 21;
|
|
|
|
public const string VERSION = "0.21";
|
|
|
|
public const string DecrementMenuName = "VRM/Version(0.21) Decrement";
|
|
public const string IncrementMenuName = "VRM/Version(0.21) Increment";
|
|
}
|
|
}
|