Interface Game


public interface Game
Interface for interactive games requiring players and rules. * @version 1.1
Since:
1.0
Author:
Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the numeric aim/goal identifier.
    Returns the set of players currently participating.
    Returns the ordered rules of the game.
  • Method Details

    • getPlayers

      Set<Individual> getPlayers()
      Returns the set of players currently participating.
    • getRules

      Vector<String> getRules()
      Returns the ordered rules of the game.
    • getAim

      int getAim()
      Returns the numeric aim/goal identifier.