Exemplo n.º 1
0
        public int GetAnzahlByEntwicklungskarte(Entwicklungskarte entwicklungskarte)
        {
            switch (entwicklungskarte)
            {
            case Entwicklungskarte.Siegpunkt:
                return(entwicklung_siegpunkt);

            default:
                throw new NotImplementedException($"GetAnzahlByEntwicklungskarte ({entwicklungskarte}) ");
            }
        }
Exemplo n.º 2
0
        public void AddEntwicklungskarte(Entwicklungskarte entwicklungskarte)
        {
            switch (entwicklungskarte)
            {
            case Entwicklungskarte.Siegpunkt:
                entwicklung_siegpunkt++;
                break;

            default:
                throw new NotImplementedException($"AddEntwicklungskarte ({entwicklungskarte}) ");
            }
        }