lwb
2020-11-03 4bd30dd01b09d642eaddeade6e13aa36d9d353e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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) {
 
    }
}