]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/gui/map/TileConsumer.java
Version 16, February 2014
[GpsPrune.git] / tim / prune / gui / map / TileConsumer.java
1 package tim.prune.gui.map;
2
3 /**
4  * Interface used by the MapTileManager to communicate back to its consumers
5  */
6 public interface TileConsumer
7 {
8         /** Let the consumer know that the tiles have been updated */
9         public void tilesUpdated(boolean inIsOk);
10 }