All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.barrybecker4.game.common.GameViewModel Maven / Gradle / Ivy

/** Copyright by Barry G. Becker, 2000-2011. Licensed under MIT License: http://www.opensource.org/licenses/MIT  */
package com.barrybecker4.game.common;

import com.barrybecker4.game.common.board.IBoard;

/**
 * The GameController communicates with the viewer via this interface.
 * Alternatively we could use RMI or events, but for now the minimal interface is
 * defined here and called directly by the controller.
 *
 * @author Barry Becker
 */
public interface GameViewModel {

    /**
     * return the game to its original state.
     */
    void reset();

   /**
     * @return our game controller
     */
    GameController getController();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy