This commit is contained in:
2021-12-07 17:25:59 +01:00
parent 0c2190baea
commit a1767897d2
15 changed files with 397 additions and 686 deletions

View File

@@ -26,78 +26,6 @@ public enum Card {
JUGGLER, JUGGLER_BLUE, JUGGLER_RED, JUGGLER_GREEN, JUGGLER_YELLOW;
public enum Suit {
NONE {
public float getRed() {
return 255.0f;
}
public float getGreen() {
return 255.0f;
}
public float getBlue() {
return 255.0f;
}
},
YELLOW {
public float getRed() {
return 255.0f;
}
public float getGreen() {
return 255.0f;
}
public float getBlue() {
return 0.0f;
}
},
RED{
public float getRed() {
return 238.0f;
}
public float getGreen() {
return 0.0f;
}
public float getBlue() {
return 0.0f;
}
},
GREEN{
public float getRed() {
return 0.0f;
}
public float getGreen() {
return 255.0f;
}
public float getBlue() {
return 0.0f;
}
},
BLUE{
public float getRed() {
return 0.0f;
}
public float getGreen() {
return 0.0f;
}
public float getBlue() {
return 139.0f;
}
};
public float getAlpha() {
return 0.5f;
}
public float getRed() {
return 0.f;
}
public float getGreen() {
return 0.f;
}
public float getBlue() {
return 0.f;
}
NONE, YELLOW, RED, GREEN, BLUE
}
}