You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GameState.java 301 B

1234567891011121314151617
  1. package structures;
  2. /**
  3. * This class can be used to hold information about the on-going game.
  4. * Its created with the GameActor.
  5. *
  6. * @author Dr. Richard McCreadie
  7. *
  8. */
  9. public class GameState {
  10. public boolean gameInitalised = false;
  11. public boolean something = false;
  12. }