blob: ba8c655eb484db1eb8ef8432e75a72bf9ff3e416 (
plain)
1
2
3
4
5
6
7
8
9
|
using System;
namespace XUtliPoolLib
{
public interface IXBuglyMgr : IXInterface
{
void ReportCrashToBugly(string serverid, string rolename, uint rolelevel, int roleprof, string openid, string version, string realtime, string scenename, string sceneid, string content);
}
}
|