選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

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