Skip to content
Snippets Groups Projects
Commit 8b6150f7 authored by Sarah CHERCHEM's avatar Sarah CHERCHEM
Browse files

BoardProperties : Add the methode getState

parent 39f23036
No related branches found
No related tags found
No related merge requests found
package model;
import util.Position;
import java.util.List;
public interface BoardProperties {
int rowCount(); // Nombre de lignes.
int columnCount(); // Nombre de colonnes.
List<ModelElement> getState(Position position); // État des éléments sur une position donnée.
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment