add black and white object color overrides
This commit is contained in:
parent
08414d9d2a
commit
f313a1639f
|
@ -52,6 +52,18 @@ public enum ObjectColorOverrides {
|
||||||
public Color getColor(int comboColorIndex) {
|
public Color getColor(int comboColorIndex) {
|
||||||
return nextMirrorRainbowColor();
|
return nextMirrorRainbowColor();
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
BLACK ("Black", 12) {
|
||||||
|
@Override
|
||||||
|
public Color getColor(int comboColorIndex) {
|
||||||
|
return Color.black;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
WHITE ("White", 13) {
|
||||||
|
@Override
|
||||||
|
public Color getColor(int comboColorIndex) {
|
||||||
|
return Color.white;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
public int nr;
|
public int nr;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user