Package cero.games

Examples of cero.games.GameEvent


  }

  private void notifyGameStart() {
    for (GameListener list : gameListeners) {
      // using a new event in case the last listener modified it
      GameEvent event = new GameEvent(this);
      list.gameStart(event);
    }
  }
View Full Code Here


  }

  private void notifyGameEnd() {
    for (GameListener list : gameListeners) {
      // using a new event in case the last listener modified it
      GameEvent event = new GameEvent(this);
      list.gameEnd(event);
    }
  }
View Full Code Here

TOP

Related Classes of cero.games.GameEvent

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.