選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- package structures;
-
- /**
- * This class can be used to hold information about the on-going game.
- * Its created with the GameActor.
- *
- * @author Dr. Richard McCreadie
- *
- */
- public class GameState {
-
-
- public boolean gameInitalised = false;
-
- public boolean something = false;
-
- }
|