1234567891011121314151617181920212223242526 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class NetWorkHeadersConfig
- {
- //public const string Remote_Net_url = "http://192.168.202.36:8899";
- //public const string Remote_SocketHall_url = "wss://cgdemo.shadowcreator.com:8072/lobby?";
- //public const string Remote_SocketRtc_url = "wss://cgdemo.shadowcreator.com:8072/room?";
- //public const string Remote_Net_url = "https://webapi-fat.shadowcreator.com/100032";
- //public const string Remote_SocketHall_url = "wss://cloud-assistant.shadowcreator.com/fatlobby/?";
- //public const string Remote_SocketRtc_url = "wss://cloud-assistant.shadowcreator.com/fatroom/?";
- //public const string Remote_Net_url = "https://webapi-uat.shadowcreator.com/100032";
- //public const string Remote_SocketHall_url = "wss://cloud-assistant.shadowcreator.com/uatlobby?";
- //public const string Remote_SocketRtc_url = "wss://cloud-assistant.shadowcreator.com/uatroom?";
- //public const string Remote_Net_url = "https://webapi.shadowcreator.com/100032";
- //public const string Remote_SocketHall_url = "wss://cloud-assistant.shadowcreator.com/lobby?";
- //public const string Remote_SocketRtc_url = "wss://cloud-assistant.shadowcreator.com/room?";
- public const string Remote_Net_url = "https://support.ghz-tech.com:8843/api/";
- public const string Remote_SocketHall_url = "wss://api-cs.ghz-tech.com/remote-lobby/?";
- public const string Remote_SocketRtc_url = "wss://api-cs.ghz-tech.com/remote-room/?";
- }
|