Files
artloglaby/java/org/artisanlogiciel/games/maze/MovesProvider.java
philippe lhardy e146199ba0 Split Display (gui) and Maze (work), prepare for another model
- prepare for a shorter storage model without any resolution
2020-12-20 19:18:17 +01:00

16 lines
313 B
Java

package org.artisanlogiciel.games.maze;
import org.artisanlogiciel.games.maze.model.WidthHeightProvider;
/**
* Get model represented by possible moves
*/
public interface MovesProvider
extends WidthHeightProvider
{
/** return possible moves from this position */
short getMoves(int x, int y);
}