MineLittlePony/src/common/java/com/minelittlepony/gui/IActionable.java

13 lines
195 B
Java
Raw Normal View History

package com.minelittlepony.gui;
2018-05-15 16:25:11 +02:00
/**
* An element that can perform an action.
*/
@FunctionalInterface
public interface IActionable {
2018-05-15 16:25:11 +02:00
/**
* Does whatever.
*/
void perform();
}