You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
469 B

  1. package demo;
  2. import commands.BasicCommands;
  3. import akka.actor.ActorRef;
  4. public class TurnDemo {
  5. /**
  6. * This method is used to demonstrate the use of the endTurnClicked event.
  7. *
  8. * @param out
  9. */
  10. public static void executeDemo(ActorRef out) {
  11. // addPlayer1Notification
  12. BasicCommands.addPlayer1Notification(out, "Turn Demo", 2);
  13. try {Thread.sleep(2000);} catch (InterruptedException e) {e.printStackTrace();}
  14. }
  15. }