Package ingsw.proj.cluedo.eventi

Examples of ingsw.proj.cluedo.eventi.DestinazioneSceltaEvent


   *            il nuovo tabellone di gioco
   */
  public abstract void refreshTabellone(CasellaRidotta[][] tabellone);

  protected final synchronized void fireDestinazioneSceltaEvent(String giocatore, Point destinazione) {
    DestinazioneSceltaEvent evento = new DestinazioneSceltaEvent(this, giocatore, destinazione);
    for (int i = 0; i < listeners.size(); i++)
      if (listeners.get(i) instanceof DestinazioneSceltaListener)
        ((DestinazioneSceltaListener) listeners.get(i)).notificaDestinazioneScelta(evento);
  }
View Full Code Here

TOP

Related Classes of ingsw.proj.cluedo.eventi.DestinazioneSceltaEvent

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.