Ejemplo n.º 1
0
        public static void ChooseLandFunction(Spieler s, uint func)
        {
            Land l = new Land(); //Das muss anders gehen

            switch (func)
            {
            case 1:
                Ui.PrintAnzPromt();
                s.LandKaufen(Ui.GetAnz());
                break;

            case 2:
                Ui.PrintAnzPromt();
                s.LandVerkaufen(Ui.GetAnz());
                break;

            case 3:
                Hauptmenue(s);
                break;

            default:
                Ui.PrintError("Ungültige Eingabe");
                s.LandVerwalten(s);
                break;
            }
        }
Ejemplo n.º 2
0
        public static void ChooseMainFunction(Spieler s, uint func)
        {
            switch (func)
            {
            case 1:
                s.LandVerwalten(s);
                break;

            case 2:
                s.GetreideVerwalten(s);
                break;

            case 3:
                Beenden();
                break;

            default:
                Ui.PrintError("Ungültige Eingabe");
                Hauptmenue(s);
                break;
            }
        }