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

State.java

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.
    State.java 185 B
    package model;
    
    import javafx.scene.paint.Color;
    
    import java.util.List;
    
    public interface State<S> {
    
        Color getColor();
    
        S next();
    
        S update(List<State<S>> neighbours);
    
    }