]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/gui/map/TileConsumer.java
35a557e5556bf5582f88971bfe911276f660dc84
[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 }