Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. namespace Unity.AI.Navigation
  2. {
  3. /// <summary>
  4. /// Helper for compile-time constant strings for the [HelpURL](xref:UnityEngine.HelpURLAttribute) attribute.
  5. /// </summary>
  6. static class HelpUrls
  7. {
  8. const string Version = "2.0";
  9. const string BaseUrl = "https://docs.unity3d.com/Packages/com.unity.ai.navigation@" + Version;
  10. internal const string Manual = BaseUrl + "/manual/";
  11. internal const string Api = BaseUrl + "/api/";
  12. }
  13. }