Select Git revision
Student.java
Forked from
NASR Alexis / Programmation2
Source project has a limited visibility.
-
Alexis Nasr authoredAlexis Nasr authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Element.java 497 B
package model;
import util.Position;
import java.util.ArrayList;
import java.util.List;
public abstract class Element {
ModelElement type;
Behavior behavior;
List<ModelElement> obstacles;
public Element(ModelElement type, Behavior behavior, ArrayList<ModelElement> obstacles) {
this.type = type;
this.behavior = behavior;
this.obstacles = obstacles;
}
public abstract List<Position> Update(List<Position>[] board,List<Position> modifiedList);
}