Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

19 lignes
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. }