hch
2025-03-12 242cb62c6b6e123f6599589be416c0c6586ce2a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.secondworld.sdk.command;
 
import com.secondworld.sdk.utils.CodeU2A;
 
import org.json.JSONObject;
 
public class CmdPlatformInit implements ICommand {
    @Override
    public int getCode() {
        return CodeU2A.PlatformInit;
    }
 
    @Override
    public void process(JSONObject json) throws Exception {
 
    }
}