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