コード例 #1
0
ファイル: Program.cs プロジェクト: ChristopherTulip/Snake
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            SnakeForm snakeForm = new SnakeForm();
            GameController game = new GameController(snakeForm);
            snakeForm.game = game;

            game.start();

            Application.Run(snakeForm);
        }