public interface OverlayPlugin extends MMGenericPlugin
To create an overlay plugin, annotate your class like this:
@Plugin(type = OverlayPlugin.class,
priority = Prioroty.NORMAL_PRIORITY, // Suggests order in menu
name = "My Overlay", // User-visible name
description = "Show Wonderful Indicator") // Tooltip
public class MyOverlayPlugin implements OverlayPlugin {
// ...
}
Modifier and Type | Method and Description |
---|---|
Overlay |
createOverlay() |
Overlay createOverlay()