VRMSpecVersion.cs 360 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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"; } }