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