1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.huawei.android.hms.agent.game.handler;
|
| import com.huawei.android.hms.agent.common.ICallbackResult;
| import com.huawei.hms.support.api.entity.game.GameUserData;
|
| /**
| * 游戏登录结果回调接口
| */
| public interface LoginHandler extends ICallbackResult<GameUserData> {
|
| /**
| * 登录帐号发生变化时回调
| */
| void onChange();
| }
|
|