client_Hale
2020-11-11 eae160d56c5662a6d8d122fc20a7a300614e5a12
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) {
    }
}