Example #1
0
    public void CreateCouple(Bunny bunny1, Bunny bunny2)
    {
        Couple newCouple = new Couple(bunny1, bunny2);

        bunny1.GoIdle();
        bunny2.GoIdle();
        couples.Add(newCouple);
    }