Annotation Interface GameInfo


@Retention(RUNTIME) public @interface GameInfo
Annotation for internal Games to access Information.
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    The Description of the Game.
    int
    The maximal Amount of Players.
    int
    The minimal Amount of Players.
    The Name of the Game.
  • Element Details

    • name

      String name
      The Name of the Game.
      Returns:
      The Name of the Game.
    • description

      String description
      The Description of the Game.
      Returns:
      The Description of the Game.
    • minPlayers

      int minPlayers
      The minimal Amount of Players.
      Returns:
      The minimal Amount of Players.
    • maxPlayers

      int maxPlayers
      The maximal Amount of Players.
      Returns:
      The maximal Amount of Players.