X-Git-Url: http://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=src%2Ftim%2Fprune%2Fgui%2Fmap%2FTileConsumer.java;fp=src%2Ftim%2Fprune%2Fgui%2Fmap%2FTileConsumer.java;h=35a557e5556bf5582f88971bfe911276f660dc84;hp=0000000000000000000000000000000000000000;hb=ce6f2161b8596f7018d6a76bff79bc9e571f35fd;hpb=2d8cb72e84d5cc1089ce77baf1e34ea3ea2f8465 diff --git a/src/tim/prune/gui/map/TileConsumer.java b/src/tim/prune/gui/map/TileConsumer.java new file mode 100644 index 0000000..35a557e --- /dev/null +++ b/src/tim/prune/gui/map/TileConsumer.java @@ -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); +}