parent
d0fbfb812f
commit
6179f12dbb
Binary file not shown.
@ -1,12 +1,29 @@ |
||||
package sig; |
||||
|
||||
import java.awt.Color; |
||||
|
||||
public enum BlockState { |
||||
RED, |
||||
BLUE, |
||||
GREEN, |
||||
YELLOW, |
||||
ORANGE, |
||||
PURPLE, |
||||
WHITE, |
||||
IGNITED |
||||
RED(Color.RED), |
||||
BLUE(Color.BLUE), |
||||
GREEN(Color.GREEN), |
||||
YELLOW(Color.YELLOW), |
||||
ORANGE(Color.ORANGE), |
||||
PURPLE(Color.MAGENTA), |
||||
WHITE(Color.WHITE), |
||||
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