Exemplo n.º 1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Assn3Game game = new Assn3Game())
     {
         game.Run();
     }
 }
Exemplo n.º 2
0
 public Enemy( Assn3Game game )
     : base(game)
 {
     this.mWorldPosition = new Vector3( 0.5f, 0.5f, 0 );
 }
Exemplo n.º 3
0
 public Actor( Assn3Game game )
     : base(game)
 {
 }