Ejemplo n.º 1
0
Archivo: UI.cs Proyecto: Juutis/FGJ20
    public void Win()
    {
        switch (motherShip.CountLifeSupports())
        {
        case 3:
            HappyEnding();
            break;

        case 2:
            SadEnding();
            break;

        default:
            VerySadEnding();
            break;
        }
    }