Select Git revision
IMapNode.java
Forked from
tdt4140-staff / examples
Up to date with the upstream repository.
-
Hallvard Trætteberg authoredHallvard Trætteberg authored
IMapNode.java 281 B
/*
* FX Map Control - https://github.com/ClemensFischer/FX-Map-Control
* © 2016 Clemens Fischer
*/
package fxmapcontrol;
/**
* Represents a Node in the visual tree of a MapBase instance.
*/
public interface IMapNode {
MapBase getMap();
void setMap(MapBase map);
}