]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - src/tim/prune/gui/map/TileConsumer.java
Moved source into separate src directory due to popular request
[GpsPrune.git] / src / tim / prune / gui / map / TileConsumer.java
diff --git a/src/tim/prune/gui/map/TileConsumer.java b/src/tim/prune/gui/map/TileConsumer.java
new file mode 100644 (file)
index 0000000..35a557e
--- /dev/null
@@ -0,0 +1,10 @@
+package tim.prune.gui.map;
+
+/**
+ * Interface used by the MapTileManager to communicate back to its consumers
+ */
+public interface TileConsumer
+{
+       /** Let the consumer know that the tiles have been updated */
+       public void tilesUpdated(boolean inIsOk);
+}