MineLittlePony/src/common/java/com/minelittlepony/gui/IGuiCallback.java
2018-08-06 18:44:34 +02:00

15 lines
327 B
Java

package com.minelittlepony.gui;
/**
* Response actions for UI events.
*/
@FunctionalInterface
public interface IGuiCallback<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);
}