예제 #1
0
        public AnimalRenderer(Game1 game)
        {
            this.game = game;
            camera = game.camera;

            this.animalLooks = new List<Model>();
            this.textureTranslations = new List<Vector2>();
        }
예제 #2
0
파일: Program.cs 프로젝트: pengare/flocking
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1()) {
         game.Run();
     }
 }