Files
BallCrushBest_GP/Assets/Legend/Manager/NetworkManager.cs
T

38 lines
1.1 KiB
C#
Raw Normal View History

2026-04-20 12:06:34 +08:00
using UnityEngine;
namespace BallKingdomCrush
{
public class NetworkManager : BaseUnityManager<NetworkManager>
{
#if GAME_RELEASE
public static string crazyUrl => true ? DomainReleaseUrl : DomainDebugUrl;
#else
public static string crazyUrl => false ? DomainReleaseUrl : DomainDebugUrl;
#endif
public const string DomainRelease = "zoomatch.fun";
//is debug test--------
public const string DomainDebugUrl = @"https://swhitegames.top/api/";
public static readonly string DomainReleaseUrl = $"https://{DomainRelease}/api/";
public const string identifier = "com.wackyllamagame.chaos";
private LoginSystem loginSystem;
private ConfigSystem configSystem;
private PlayDataSystem playDataSystem;
public static bool haveSimCard = false;
public override void Init()
{
InitSystem();
}
private void InitSystem()
{
loginSystem = new LoginSystem();
configSystem = new ConfigSystem();
playDataSystem = new PlayDataSystem();
}
}
}