MagicCombatButtonAction

Implement this and override execute to instruct buttons what they should do when clicked.

Example implementation:

public class ExampleButtonAction implements MagicCombatButtonAction {
@Override
public void execute() {
Global.getLogger(this.getClass()).info("Button was clicked. This message should show up in starsector.log");
}
}

Author

Jannes

Since

1.3.0

Functions

Link copied to clipboard
abstract fun execute()

Will get executed when button is clicked.