From 34dae0168d0979c8ae66675e02dbead42b31e6e7 Mon Sep 17 00:00:00 2001 From: Sollace Date: Fri, 27 Jul 2018 15:45:16 +0200 Subject: [PATCH] Rewrite GuiSkins --- .../java/com/minelittlepony/gui/IGUIAction.java | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/common/java/com/minelittlepony/gui/IGUIAction.java diff --git a/src/common/java/com/minelittlepony/gui/IGUIAction.java b/src/common/java/com/minelittlepony/gui/IGUIAction.java deleted file mode 100644 index 48aa5efa..00000000 --- a/src/common/java/com/minelittlepony/gui/IGUIAction.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.minelittlepony.gui; - -/** - * Response actions for UI events. - */ -@FunctionalInterface -public interface IGUIAction { - /** - * 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); -}