Constants.cs 529 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace SharpGLTF
  5. {
  6. static class Constants
  7. {
  8. #region root paths
  9. public static string RemoteSchemaRepo = "https://github.com/KhronosGroup/glTF.git";
  10. /// <summary>
  11. /// Directory where the schema is downloaded and used as source
  12. /// </summary>
  13. public static string LocalRepoDirectory => System.IO.Path.Combine(AppContext.BaseDirectory, "glTF");
  14. #endregion
  15. }
  16. }