14 lines
275 B
C#
14 lines
275 B
C#
|
|
namespace UniVRM10
|
|
{
|
|
public static partial class VRM10SpecVersion
|
|
{
|
|
public const int MAJOR = 1;
|
|
public const int MINOR = 0;
|
|
public const int PATCH = 0;
|
|
public const string PRE_ID = "";
|
|
|
|
const string VERSION = "1.0.0";
|
|
}
|
|
}
|