Select Git revision
Decorator.java
Forked from
COUETOUX Basile / graphic-2020
Source project has a limited visibility.
-
AREZKI Celia authored
The Decorator class adds functionality to the shapes. It also implements Shape and delegates method calls to the decorated shape.
AREZKI Celia authoredThe Decorator class adds functionality to the shapes. It also implements Shape and delegates method calls to the decorated shape.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ViewElement.java 264 B
package view;
import javafx.scene.paint.Color;
public enum ViewElement {
FIREFIGHTER(Color.BLUE), FIRE(Color.RED), CLOUD(Color.GREY),MOUNTAIN(Color.CHOCOLATE), EMPTY(Color.WHITE);
final Color color;
ViewElement(Color color) {
this.color = color;
}
}