Package networking.request

Source Code of networking.request.RequestExitGame

package networking.request;

import java.io.IOException;

import networking.response.ResponseExitGame;

/**
*
* @author Xuyuan
*/
public class RequestExitGame extends GameRequest {

    // Responses
    private ResponseExitGame responseExitGame;

    public RequestExitGame() {
        responses.add(responseExitGame = new ResponseExitGame());
    }

    @Override
    public void parse() throws IOException {
    }

    @Override
    public void doBusiness() throws Exception {
        client.stopClient();
    }
}
TOP

Related Classes of networking.request.RequestExitGame

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.