mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-13 14:04:29 -05:00
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";
|
|
}
|
|
}
|