using System; using System.Collections.Generic; using System.Text; namespace SharpGLTF { static class Constants { #region root paths public static string RemoteSchemaRepo = "https://github.com/KhronosGroup/glTF.git"; /// /// Directory where the schema is downloaded and used as source /// public static string LocalRepoDirectory => System.IO.Path.Combine(AppContext.BaseDirectory, "glTF"); #endregion } }