Package bluffinmuffin.protocol.commands.lobby.training

Examples of bluffinmuffin.protocol.commands.lobby.training.IdentifyResponse


    public boolean identify(String name)
    {
        m_playerName = name;
        send(new IdentifyCommand(m_playerName));
        final StringTokenizer token = receiveCommand(IdentifyResponse.COMMAND_NAME);
        final IdentifyResponse response = new IdentifyResponse(token);
        return response.isOK();
    }
View Full Code Here

TOP

Related Classes of bluffinmuffin.protocol.commands.lobby.training.IdentifyResponse

Copyright © 2018 www.massapicom. 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.