lwb
2020-11-03 88556d9898865d314936233f2d15ca862d699a71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.secondworld.universalsdk.command;
 
import android.util.Log;
 
import com.secondworld.universalsdk.CodeU2A;
 
/**
 * 游戏初始化
 */
public class CmdInit implements ICommand {
    @Override
    public int getCode() {
        return CodeU2A.Init;
    }
 
    @Override
    public void process(String json) {
        Log.e("ICommand", "游戏初始化!!!!!!!!!!!");
    }
}