Skip to content
Snippets Groups Projects
Select Git revision
  • efe3a934b7eae0c77d603c0973055a4947ae6004
  • main default protected
  • variant
3 results

Cell.class

Blame
  • Forked from COUETOUX Basile / FirefighterStarter
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    SquareCell.java 734 B
    package model;
    
    import javafx.scene.paint.Color;
    
    import java.util.Iterator;
    import java.util.List;
    
    public class SquareCell extends AbstractCell{
    
        List<Cell> neighbours;
    
    
        /**
         * A cell is placed somewhere on a grid. Its neighbours thus depend on the underlying grid.
         *
         * @return the list of cell that are neighbours of this{@code Cell}.
         */
        @Override
        public List<Cell> getNeighbours() {
            return null;
        }
    
        /**
         * Update the list of neighbours of this {@code Cell}.
         *
         * @param cells a list of cells that are the neighbours of this {@code cell}
         *              int the underlying grid.
         */
        @Override
        public void setNeighbours(List<Cell> cells) {
    
        }
    
    
    }