mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-12-02 00:37:59 +01:00
12 lines
195 B
Java
12 lines
195 B
Java
package com.minelittlepony.gui;
|
|
|
|
/**
|
|
* An element that can perform an action.
|
|
*/
|
|
@FunctionalInterface
|
|
public interface IActionable {
|
|
/**
|
|
* Does whatever.
|
|
*/
|
|
void perform();
|
|
}
|