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

16 lines
327 B
Java
Raw Normal View History

2018-07-27 15:45:16 +02:00
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);
}