using SC.XR.Unity; using System.Collections; using System.Collections.Generic; using UnityEngine; public class SpaceHttpAction : Singleton { public string loginUrl { get { if (HttpSDKAction.Instance.loginUrl == "") { HttpSDKAction.Instance.loginUrl = "https://studio.ghz-tech.com:8843/api/"; } return HttpSDKAction.Instance.loginUrl; } } public string lobbyUrl { get { if (HttpSDKAction.Instance.officeSocket == "") { HttpSDKAction.Instance.officeSocket = "wss://office.ghz-tech.com:9175/?appId=100009"; } return HttpSDKAction.Instance.officeSocket; } } public string roomUrl { get { if (HttpSDKAction.Instance.roomSocket == "") { HttpSDKAction.Instance.roomSocket = "wss://office.ghz-tech.com:9180/?token="; } return HttpSDKAction.Instance.roomSocket; } } }