Continous Integration in der Praxis Gruppenarbeit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
586 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MiniGames.Shared.Enums
  7. {
  8. [Flags]
  9. public enum Kartenbezeichnung
  10. {
  11. Eins = 1,
  12. Zwei = 2,
  13. Drei = 3,
  14. Vier = 4,
  15. Fuenf = 5,
  16. Sechs = 6,
  17. Sieben = 7,
  18. Acht = 8,
  19. Neun = 9,
  20. PlusZweiKarte,
  21. RetoureKarte,
  22. AussetzenKarte,
  23. FarbwahlKarte,
  24. ZiehVierFarbenwahlkarte
  25. }
  26. public enum Farbe
  27. {
  28. Blau, Rot, Gruen, Gelb, Keine
  29. }
  30. }