提交小游戏项目

This commit is contained in:
2026-07-06 16:27:14 +08:00
commit 2a717c6a2f
7575 changed files with 710847 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
using UnityEngine;
namespace TowerClimberChronicles
{
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.finedinogame.wingwizard";
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();
}
}
}