Beispiel #1
0
        private void OneComputerGameButton_Click(object sender, EventArgs e)
        {
            OneComputerProfile oneComputerProfile = new OneComputerProfile();

            oneComputerProfile.Show();
            this.Hide();
        }
 public OneComputerGame(OneComputerProfile OneComputerProfile, Person person1, Person person2)
 {
     this.OneComputerProfile = OneComputerProfile;
     this.person1            = person1;
     this.person2            = person2;
     InitializeComponent();
 }
Beispiel #3
0
 public Result(OneComputerProfile oneComputerProfile, Person person1, Person person2, bool isAccuse1, bool isAccuse2)
 {
     this.OneComputerProfile = oneComputerProfile;
     this.person1            = person1;
     this.person2            = person2;
     this.isAccuse1          = isAccuse1;
     this.isAccuse2          = isAccuse2;
     InitializeComponent();
     judge(person1.name, person2.name, isAccuse1, isAccuse2);
 }