package demo; import commands.BasicCommands; import akka.actor.ActorRef; public class TurnDemo { /** * This method is used to demonstrate the use of the endTurnClicked event. * * @param out */ public static void executeDemo(ActorRef out) { // addPlayer1Notification BasicCommands.addPlayer1Notification(out, "Turn Demo", 2); try {Thread.sleep(2000);} catch (InterruptedException e) {e.printStackTrace();} } }