parent
d0fbfb812f
commit
6179f12dbb
Binary file not shown.
@ -1,12 +1,29 @@ |
|||||||
package sig; |
package sig; |
||||||
|
|
||||||
|
import java.awt.Color; |
||||||
|
|
||||||
public enum BlockState { |
public enum BlockState { |
||||||
RED, |
RED(Color.RED), |
||||||
BLUE, |
BLUE(Color.BLUE), |
||||||
GREEN, |
GREEN(Color.GREEN), |
||||||
YELLOW, |
YELLOW(Color.YELLOW), |
||||||
ORANGE, |
ORANGE(Color.ORANGE), |
||||||
PURPLE, |
PURPLE(Color.MAGENTA), |
||||||
WHITE, |
WHITE(Color.WHITE), |
||||||
IGNITED |
IGNITED(Color.BLACK); |
||||||
|
|
||||||
|
Color col; |
||||||
|
|
||||||
|
BlockState(Color col) { |
||||||
|
this.col=col; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public Color getCol() { |
||||||
|
return col; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCol(Color col) { |
||||||
|
this.col = col; |
||||||
|
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue