Add support for greeting/farewell on circle markers
This commit is contained in:
parent
7c021d32c9
commit
395f45b0f9
8 changed files with 183 additions and 7 deletions
|
|
@ -3,7 +3,7 @@ package org.dynmap.markers;
|
|||
/**
|
||||
* This defines the public interface to a circle marker object, for use with the MarkerAPI
|
||||
*/
|
||||
public interface CircleMarker extends MarkerDescription {
|
||||
public interface CircleMarker extends MarkerDescription, EnterExitMarker {
|
||||
/**
|
||||
* Get center X coordinate
|
||||
* @return x coordinate
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@ package org.dynmap.markers;
|
|||
* This defines the public interface to a generic marker object, for use with the MarkerAPI
|
||||
*/
|
||||
public interface GenericMarker {
|
||||
/**
|
||||
* Get unique ID of the marker (markersetid:type:markerid)
|
||||
*/
|
||||
public String getUniqueMarkerID();
|
||||
/**
|
||||
* Get ID of the marker (unique string within the MarkerSet)
|
||||
* @return id of marker
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue