mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-12-02 08:48:00 +01:00
6 lines
86 B
Java
6 lines
86 B
Java
|
package com.minelittlepony.gui;
|
||
|
|
||
|
public interface IActionable {
|
||
|
void perform();
|
||
|
}
|