NetWorkHeadersConfig.cs 1.5 KB

1234567891011121314151617181920212223242526
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class NetWorkHeadersConfig
  5. {
  6. //public const string Remote_Net_url = "http://192.168.202.36:8899";
  7. //public const string Remote_SocketHall_url = "wss://cgdemo.shadowcreator.com:8072/lobby?";
  8. //public const string Remote_SocketRtc_url = "wss://cgdemo.shadowcreator.com:8072/room?";
  9. //public const string Remote_Net_url = "https://webapi-fat.shadowcreator.com/100032";
  10. //public const string Remote_SocketHall_url = "wss://cloud-assistant.shadowcreator.com/fatlobby/?";
  11. //public const string Remote_SocketRtc_url = "wss://cloud-assistant.shadowcreator.com/fatroom/?";
  12. //public const string Remote_Net_url = "https://webapi-uat.shadowcreator.com/100032";
  13. //public const string Remote_SocketHall_url = "wss://cloud-assistant.shadowcreator.com/uatlobby?";
  14. //public const string Remote_SocketRtc_url = "wss://cloud-assistant.shadowcreator.com/uatroom?";
  15. //public const string Remote_Net_url = "https://webapi.shadowcreator.com/100032";
  16. //public const string Remote_SocketHall_url = "wss://cloud-assistant.shadowcreator.com/lobby?";
  17. //public const string Remote_SocketRtc_url = "wss://cloud-assistant.shadowcreator.com/room?";
  18. public const string Remote_Net_url = "https://support.ghz-tech.com:8843/api/";
  19. public const string Remote_SocketHall_url = "wss://api-cs.ghz-tech.com/remote-lobby/?";
  20. public const string Remote_SocketRtc_url = "wss://api-cs.ghz-tech.com/remote-room/?";
  21. }