Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

18 řádky
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. }