public void UseNestMotherFatherCombination(Game game, Gamer gamer) //corresponds mfnButton { Mother mother = new Mother(); Father father = new Father(); Nest nest = new Nest(); int IDMother = DefineRequiredCardID(mother, gamer); UseThrowCardCombination(game, gamer, IDMother); int IDFather = DefineRequiredCardID(mother, gamer); UseThrowCardCombination(game, gamer, IDMother); int IDNest = DefineRequiredCardID(mother, gamer); UseThrowCardCombination(game, gamer, IDMother); }
public void UseFatherFatherCombination(Game game, Gamer gamer) //corresponds ffButton { Father father = new Father(); Nest nest = new Nest(); }