org.jogre.common
Interface IGameOver

All Known Implementing Classes:
CommGameOver, GameOver

public interface IGameOver

Interface which holds constants for a game over.

Version:
Alpha 0.2.3
Author:
Bob Marks

Field Summary
static int AGREED_DRAW
          All users agree on a draw.
static int DRAW
          Player draws with another player.
static int LOSE
          Player losses a game.
static String[] RESULTS
          Player wins a game.
static int USER_RESIGNS
          A user resigns.
static int WIN
          Player wins a game.
 

Field Detail

RESULTS

public static final String[] RESULTS
Player wins a game.


WIN

public static final int WIN
Player wins a game.

See Also:
Constant Field Values

LOSE

public static final int LOSE
Player losses a game.

See Also:
Constant Field Values

DRAW

public static final int DRAW
Player draws with another player.

See Also:
Constant Field Values

USER_RESIGNS

public static final int USER_RESIGNS
A user resigns.

See Also:
Constant Field Values

AGREED_DRAW

public static final int AGREED_DRAW
All users agree on a draw.

See Also:
Constant Field Values