25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

18 satır
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. }