예제 #1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
예제 #2
0
 public winstateTwo(Game1 tg)
     : base(tg)
 {
 }
예제 #3
0
 public levelOne(Game1 tg)
     : base(tg)
 {
     timeCounter = 90;
     levelScore.resetScore();
 }
예제 #4
0
 public loseStateTwo(Game1 tg)
     : base(tg)
 {
 }
예제 #5
0
 public winState(Game1 tg)
     : base(tg)
 {
 }
예제 #6
0
 public gameState(Game1 tg)
 {
     theGame = tg;
 }
예제 #7
0
 public loseState(Game1 tg)
     : base(tg)
 {
 }
예제 #8
0
 public titleState(Game1 tg)
     : base(tg)
 {
 }
예제 #9
0
 public levelTwo(Game1 tg)
     : base(tg)
 {}