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