Skip to content
Snippets Groups Projects
Commit d02e32fd authored by AREZKI Celia's avatar AREZKI Celia
Browse files

Extend the ViewElement enumeration

parent 915d7148
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ package view;
import javafx.scene.paint.Color;
public enum ViewElement {
FIREFIGHTER(Color.BLUE), FIRE(Color.RED), EMPTY(Color.WHITE);
FIREFIGHTER(Color.BLUE), FIRE(Color.RED), EMPTY(Color.WHITE) , CLOUD(Color.GRAY);;
final Color color;
ViewElement(Color color) {
this.color = color;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment