client_Hale
2020-11-09 ce0512bf2fb02cc17f307294d6c77b21250e32d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.secondworld.universalsdk.command;
 
import com.secondworld.universalsdk.CodeU2A;
 
/**
 * 游戏初始化
 */
public class CmdInit implements ICommand {
    @Override
    public int getCode() {
        return CodeU2A.Init;
    }
 
    @Override
    public void process(String json) {
    }
}