summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/ITssSdk.cs
blob: 96ea47d9f183ef26f10c2a9aa95dd57af3684733 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace XUtliPoolLib
{
	public interface ITssSdk
	{
		void OnLogin(int platf, string openId, uint worldId, string roleId);

		void OnRcvWhichNeedToSendClientSdk(byte[] data, uint length);
	}
}