Rewrite GuiSkins

This commit is contained in:
Sollace 2018-07-27 15:45:16 +02:00
parent 2de216842f
commit 34dae0168d

View file

@ -1,15 +0,0 @@
package com.minelittlepony.gui;
/**
* Response actions for UI events.
*/
@FunctionalInterface
public interface IGUIAction<T> {
/**
* Performs this action now.
*
* @param value New Value of the field being changed
* @return Adjusted value the field must take on
*/
T perform(T value);
}