summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/IXPandoraMgr.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-01-25 14:28:30 +0800
committerchai <chaifix@163.com>2021-01-25 14:28:30 +0800
commit6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch)
tree7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XUtliPoolLib/IXPandoraMgr.cs
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XUtliPoolLib/IXPandoraMgr.cs')
-rw-r--r--Client/Assets/Scripts/XUtliPoolLib/IXPandoraMgr.cs59
1 files changed, 59 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XUtliPoolLib/IXPandoraMgr.cs b/Client/Assets/Scripts/XUtliPoolLib/IXPandoraMgr.cs
new file mode 100644
index 00000000..0a74e6b6
--- /dev/null
+++ b/Client/Assets/Scripts/XUtliPoolLib/IXPandoraMgr.cs
@@ -0,0 +1,59 @@
+using System;
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace XUtliPoolLib
+{
+ public interface IXPandoraMgr : IXInterface
+ {
+ void SetUseHttps(int use);
+
+ void PandoraLogin(string openid, string acctype, string area, string areaID, string appId, string roleID, string accessToken, string payToken, string gameVersion, string platID);
+
+ void PopPLPanel();
+
+ void CloseAllPandoraPanel();
+
+ void ClosePandoraTabPanel(string module);
+
+ void SetPandoraPanelParent(string panelName, GameObject panelParent);
+
+ void PandoraDo(Dictionary<string, string> commandDict);
+
+ void PandoraDoJson(string json);
+
+ void PandoraInit(bool isProductEnvironment, string rootName = "");
+
+ void PandoraLogout();
+
+ void SetFont(Font font);
+
+ void NoticePandoraShareResult(string result);
+
+ void LoadProgramAsset();
+
+ void SetUserData(Dictionary<string, string> data);
+
+ void SetGameCallback(Action<Dictionary<string, string>> callback);
+
+ void SetJsonGameCallback(Action<string> callback);
+
+ bool IsActivityTabShow(string tabName);
+
+ bool IsActivityTabShow(int sysID);
+
+ bool IsActivityTabShowByContent(string tabContent);
+
+ void PopPreLossActivity(bool pop);
+
+ void NoticePandoraBuyGoodsResult(string result);
+
+ List<ActivityTabInfo> GetAllTabInfo();
+
+ List<ActivityPopInfo> GetAllPopInfo();
+
+ void OnJsonPandoraEvent(string json);
+
+ Bounds GetBoundsIncludesChildren(Transform trans);
+ }
+}