Пример #1
0
 private void buttonGender_Click(object sender, EventArgs e)
 {
     c.gender            = Utils.nextSex(c.gender);
     buttonSex.Text      = Utils.sexSymbol(c.gender);
     checkBoxSex.Checked = true;
     tt.SetToolTip(buttonSex, "Sex: " + c.gender.ToString());
 }
Пример #2
0
 private void buttonGender_Click(object sender, EventArgs e)
 {
     CreatureSex = Utils.nextSex(sex);
 }
Пример #3
0
 private void buttonSex_Click(object sender, EventArgs e)
 {
     sex            = Utils.nextSex(sex);
     buttonSex.Text = Utils.sexSymbol(sex);
 }