Package networking.response

Source Code of networking.response.ResponseStartWorld

package networking.response;

import metadata.Constants;

import utility.GamePacket;

/**
*
* @author Xuyuan
*/
public class ResponseStartWorld extends GameResponse {

    private boolean status;

    public ResponseStartWorld() {
        responseCode = Constants.SMSG_START_GAME;
    }

    @Override
    public byte[] constructResponseInBytes() {
        GamePacket packet = new GamePacket(responseCode);
        packet.addBoolean(status);

        return packet.getBytes();
    }

    public void setStatus(boolean status) {
        this.status = status;
    }
}
TOP

Related Classes of networking.response.ResponseStartWorld

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.