hch
2022-11-02 6f5f6928ec158d511a285393f73dfcb1f72a5f80
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 CmdRequestManifestPermissions implements ICommand {
    @Override
    public int getCode() {
        return CodeU2A.RequestManifestPermissions;
    }
 
    @Override
    public void process(JSONObject json) {
 
    }
}