Example #1
0
        public Form1()
        {
            Oleg oleg = new Oleg();

            InitializeComponent();
            oleg.Start(labelWallsYou, buttonWall);
            button1.MouseClick    += (s, e) => oleg.Button1_Click(buttonWall, button1, labelWallsYou, labelWallsEnemy2, labelWallsEnemy3, radioButton1, radioButton2, radioButton3);
            buttonWall.MouseClick += (s, e) => oleg.ButtonSpendWall_Click(s, e);
            this.Controls.Add(oleg.tableLayoutPanel);
            this.Controls.Add(oleg.labelWallsEnemy);
        }