Files
artloglaby/java/org/artisanlogiciel/games/maze/model/HalfSquareProvider.java
philippe lhardy afbe26065b prepare for hexagon display & other models
- display cell as hexagon is Display.mHexagon if set ( not default )
will need a checkbox to set this
- various new models preparation...
2020-12-27 15:41:27 +01:00

7 lines
124 B
Java

package org.artisanlogiciel.games.maze.model;
public interface HalfSquareProvider {
long getLeftDown(int x, int y);
}