Api.cs 371 B

12345678910111213141516
  1. namespace SRDebugger.Internal
  2. {
  3. public static class SRDebugApi
  4. {
  5. #if !UNITY_EDITOR
  6. public const string Protocol = "https://";
  7. #else
  8. public const string Protocol = "http://";
  9. #endif
  10. public const string EndPoint = Protocol + "srdebugger.stompyrobot.uk";
  11. public const string BugReportEndPoint = EndPoint + "/report/submit";
  12. }
  13. }