GameStatus.java
By: a guest | Mar 16th, 2010 | Syntax:
Java | Size: 0.80 KB | Hits: 36 | Expires: Never
/**
* GameStatus class of Trek 2010
* Assignment 4 - GameStatus.java
*
* The GameStatus class contains attributes to be manipulated in order
* to show the state of the game, and signal the display of certain
* messages and functionality surrounding debugging and cheating.
*
* Methods for use outside this class:
* - No methods defined, only public attributes to be modified.
*
* Class files required:
* - Trek.java
* - Galaxy.java
* - StarShip.java
* - CommandProcessor.java
* - GameStatus.java
*
* Version 1.0 - Created March 16, 2010
*
* Name: Steven Fowler
* ID: 10044302
*
*
*/
public class GameStatus
{
public boolean debugModeOn = false;
public boolean cheatModeOn = false;
public boolean gameWon = false;
public boolean gameLost = false;
}