public int GetAnzahlByEntwicklungskarte(Entwicklungskarte entwicklungskarte) { switch (entwicklungskarte) { case Entwicklungskarte.Siegpunkt: return(entwicklung_siegpunkt); default: throw new NotImplementedException($"GetAnzahlByEntwicklungskarte ({entwicklungskarte}) "); } }
public void AddEntwicklungskarte(Entwicklungskarte entwicklungskarte) { switch (entwicklungskarte) { case Entwicklungskarte.Siegpunkt: entwicklung_siegpunkt++; break; default: throw new NotImplementedException($"AddEntwicklungskarte ({entwicklungskarte}) "); } }