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

Sequence.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.
    Grid.java 276 B
    package view;
    
    import javafx.scene.paint.Color;
    import javafx.util.Pair;
    import model.Position;
    
    import java.util.List;
    
    public interface Grid<E> {
      void repaint(List<Pair<Position,E>> elements);
      void repaint(E[][] elements);
      int getColumnCount();
      int getRowCount();
    }