Skip to content
Snippets Groups Projects
Select Git revision
  • 31f56eabb9c3d0d81851e1584eea4395610a3635
  • main default protected
2 results

UniformTile.java

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Board.java 201 B
    package model;
    
    import java.util.List;
    
    public interface Board<S> {
      S getState(Position position);
      int rowCount();
      int columnCount();
      List<Position> updateToNextGeneration();
      void reset();
    }