mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-10 12:41:57 -05:00
21 lines
360 B
C#
21 lines
360 B
C#
using System;
|
|
|
|
namespace VRM
|
|
{
|
|
public class VRMSpecVersion
|
|
{
|
|
public const int Major = 0;
|
|
public const int Minor = 0;
|
|
|
|
public static string Version
|
|
{
|
|
get
|
|
{
|
|
return String.Format("{0}.{1}", Major, Minor);
|
|
}
|
|
}
|
|
|
|
public const string VERSION = "0.0";
|
|
}
|
|
}
|