fix:1、添加项目

This commit is contained in:
2026-04-22 09:52:55 +08:00
commit 173cfb2dc9
5871 changed files with 600870 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
using System.Collections.Generic;
using System.Linq;
using FairyGUI;
using FlowerPower;
using Newtonsoft.Json;
using SGModule.Net;
using UnityEngine;
namespace IgnoreOPS
{
public class UnityManager : BaseUnityManager<UnityManager>
{
public static UnityManager Instance;
public UnityManager()
{
Instance = this;
}
public void DakaiACT()
{
#if UNITY_IOS && !UNITY_EDITOR
BrigdeIOS.DakaiACT();
#endif
}
public void ShezhiACT(bool act)
{
#if UNITY_IOS && !UNITY_EDITOR
BrigdeIOS.ShezhiACT(act);
#endif
}
public void initACTData()
{
#if UNITY_IOS && !UNITY_EDITOR
BrigdeIOS.initACTData();
#endif
}
public void haveSimCard(string have)
{
Debug.Log("haveSimCard------" + have);
if (have == "TRUE") NetworkManager.haveSimCard = true;
}
}
}