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.
48 lines
840 B
48 lines
840 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MiniGames.Shared.Enums
|
|
{
|
|
[Flags]
|
|
public enum Kartenbezeichnung
|
|
{
|
|
Null = 0,
|
|
Eins = 1,
|
|
Zwei = 2,
|
|
Drei = 3,
|
|
Vier = 4,
|
|
Fuenf = 5,
|
|
Sechs = 6,
|
|
Sieben = 7,
|
|
Acht = 8,
|
|
Neun = 9,
|
|
PlusZweiKarte = 10,
|
|
RetoureKarte = 11,
|
|
AussetzenKarte = 12,
|
|
FarbwahlKarte = 13,
|
|
ZiehVierFarbenwahlkarte = 14
|
|
}
|
|
|
|
[Flags]
|
|
public enum Farbe
|
|
{
|
|
Keine = 0,
|
|
Blau = 1,
|
|
Rot = 2,
|
|
Gruen = 3,
|
|
Gelb = 4
|
|
}
|
|
|
|
public enum Action
|
|
{
|
|
Naechster,
|
|
Farbwechsel,
|
|
EineZiehen,
|
|
ZweiZiehen,
|
|
VierZiehen,
|
|
Aussetzen
|
|
}
|
|
}
|