Package agh.sr.rmi.client.action

Examples of agh.sr.rmi.client.action.Action


    public void newTurn(PlayerToken playerToken) {
        System.out.println("New turn for player : " + playerToken);
        if (playerToken.equals(currentPlayerToken)) {
            System.out.println("Its your turn! Sending action to server!");
            try {
                gameController.makeMove(playerToken, new Action());
            } catch (RemoteException e) {
                System.out.println("Making new move gone so wrong!");
                e.printStackTrace();
            }
        }
View Full Code Here

TOP

Related Classes of agh.sr.rmi.client.action.Action

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.