hch
2022-07-22 9835d457641448a1e8fa2237c6b6fe1845c913f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.secondworld.sdk.command;
 
import com.secondworld.sdk.QuickSdkMgr;
import com.secondworld.sdk.utils.CodeU2A;
import com.smwl.smsdk.app.SMPlatformManager;
 
import org.json.JSONObject;
 
public class CmdPlatformLogout implements ICommand {
    @Override
    public int getCode() {
        return CodeU2A.PlatformLogout;
    }
 
    @Override
    public void process(JSONObject json) throws Exception {
        SMPlatformManager.getInstance().smExitCurrent();
    }
}