Skip to content
Snippets Groups Projects
Element.java 274 B
Newer Older
  • Learn to ignore specific revisions
  • package model;
    
    import util.Position;
    
    import java.util.List;
    
    public interface Element {
    
        boolean contains(List<Position>positions);
    
        Position getPosition();
    
        ModelElement getElement();
    
    
        List<Position> update(Board<List<ModelElement>> firefighterBoard);