Ejemplo n.º 1
0
        public AnimalRenderer(Game1 game)
        {
            this.game = game;
            camera = game.camera;

            this.animalLooks = new List<Model>();
            this.textureTranslations = new List<Vector2>();
        }
Ejemplo n.º 2
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1()) {
         game.Run();
     }
 }