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

edu.pdx.cs410J.security.Game Maven / Gradle / Ivy

The newest version!
package edu.pdx.cs410J.security;

/**
 * This interface describes a game.
 */
public interface Game {

  /**
   * Plays the game on a game console
   */
  public void play(GameConsole console);

  /**
   * Returns the name of the game/
   */
  public String getName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy