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