Files
back_cantanBuilding/LocalPackages/rtm-sdk-unity-2.7.20/Runtime/Plugins/LDEngine/LDEngineConfig.cs
2026-05-26 16:15:54 +08:00

22 lines
758 B
C#

using UnityEngine;
using System.Collections;
namespace com.fpnn.livedata
{
public class LDEngineConfig
{
//readonly public static string RTMEndpoint_NX = "rtm-nx-front.ilivedata.com:13321";
readonly public static string RTMEndpoint_NX = "161.189.171.91:13321";
//readonly public static string RTCEndpoint_NX = "rtc-nx-front.ilivedata.com:13702";
readonly public static string RTCEndpoint_NX = "161.189.171.91:13702";
readonly public static string RTMEndpoint_INTL = "rtm-intl-frontgate.ilivedata.com:13321";
readonly public static string RTCEndpoint_INTL = "rtc-intl-frontgate.ilivedata.com:13702";
}
public enum RTMENDPOINT
{
RTMENDPOINT_NX,
RTMENDPOINT_INTL,
}
}