Skip to content
Snippets Groups Projects
Board.java 201 B
Newer Older
  • Learn to ignore specific revisions
  • LABOUREL Arnaud's avatar
    LABOUREL Arnaud committed
    package model;
    
    import java.util.List;
    
    public interface Board<S> {
      S getState(Position position);
      int rowCount();
      int columnCount();
      List<Position> updateToNextGeneration();
      void reset();
    }