Ejemplo n.º 1
0
        public FrmGame()
        {
            InitializeComponent();

            var game = new Game(this.CreateGraphics(), "asd", new Point(50, 0));
            game.Start();
        }
Ejemplo n.º 2
0
 private void Form1_Load(object sender, EventArgs e)
 {
     var game = new Game(this.CreateGraphics());
     game.Start();
 }