Skip to content
Snippets Groups Projects
Select Git revision
  • ede6cf57f9572d8f9208da99f21ec3edb0c49fc7
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

previous-compilation-data.bin

Blame
  • Forked from YAGOUBI Rim / Game of life Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ViewElement.java 269 B
    package view;
    
    import javafx.scene.paint.Color;
    
    public enum ViewElement {
      FIREFIGHTER(Color.BLUE), FIRE(Color.RED), CLOUD(Color.LIGHTGREY),MOUNTAIN(Color.CHOCOLATE), EMPTY(Color.WHITE);
      final Color color;
      ViewElement(Color color) {
        this.color = color;
      }
    }