コード例 #1
0
ファイル: AnimalRenderer.cs プロジェクト: pengare/flocking
        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();
     }
 }