Files
taptap2024_GJ_chidouren/Assets/Scripts/System/AnalysisEventMgr.cs
2024-10-16 00:03:41 +08:00

54 lines
1.0 KiB
C#

using System.Collections.Generic;
using Framework.Utils.SingletonTemplate;
using UnityEngine;
public partial class AnalysisEventMgr : MgrBase<AnalysisEventMgr>
{
protected override void OnCreateMge()
{
Debug.Log("AnalysisEventMgr 初始化完成");
#if UNITY_EDITOR
return;
#endif
}
public void EventLog(string eventName)
{
#if UNITY_EDITOR
return;
#endif
}
public void EventLog(string eventName , string name , object value)
{
EventLog(eventName , new KeyValuePair<string, object>(name , value));
}
public void EventLog(string eventName, string label)
{
#if UNITY_EDITOR
return;
#endif
}
public void EventLog(string eventName , params KeyValuePair<string , object>[] eventData)
{
#if UNITY_EDITOR
return;
#endif
}
public void BeginPage(string page)
{
#if UNITY_EDITOR
return;
#endif
}
public void ClosePage(string page)
{
#if UNITY_EDITOR
return;
#endif
}
}