Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

18 wiersze
301 B

  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. }