Package org.ggp.base.player.gamer.event

Examples of org.ggp.base.player.gamer.event.GamerCompletedMatchEvent


    //TODO: Add goal values
    if(moves != null) {
      gamer.getMatch().appendMoves(moves);
    }
    gamer.getMatch().markCompleted(null);
    gamer.notifyObservers(new GamerCompletedMatchEvent());
    try {
      gamer.stop();
    } catch (StoppingException e) {
        GamerLogger.logStackTrace("GamePlayer", e);
    }
View Full Code Here

TOP

Related Classes of org.ggp.base.player.gamer.event.GamerCompletedMatchEvent

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.