1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class NetWorkHeadersConfig
- {
-
-
-
-
-
-
-
-
-
-
-
-
- public static string Remote_Net_url {
- get {
- if(HttpSDKAction.Instance.loginUrl=="")
- {
- HttpSDKAction.Instance.loginUrl = "https://support.ghz-tech.com:8843/api/";
- }
- return HttpSDKAction.Instance.loginUrl; }
- }
-
-
-
- public static string Remote_SocketHall_url
- {
- get
- {
- if (HttpSDKAction.Instance.officeSocket == "")
- {
- HttpSDKAction.Instance.officeSocket = "wss://support.ghz-tech.com:8843/lobby/?";
- }
- return HttpSDKAction.Instance.officeSocket;
- }
- }
- public static string Remote_SocketRtc_url
- {
- get
- {
- if (HttpSDKAction.Instance.roomSocket == "")
- {
- HttpSDKAction.Instance.roomSocket = "wss://support.ghz-tech.com:8843/room/?";
- }
- return HttpSDKAction.Instance.roomSocket;
- }
- }
- }
|