aboutsummaryrefslogtreecommitdiff
path: root/src/Java/binnie/craftgui/events/EventCycleChanged.java
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-02-19 17:38:35 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-02-19 17:38:35 +1000
commit7011e367ac5ccc34473283d6245bc2cec93b835e (patch)
treecc5675471f1101631bec2cde9713cb9c0004cc8f /src/Java/binnie/craftgui/events/EventCycleChanged.java
parentc68c67d74f39c3eb075ac29e88936a1976ef089b (diff)
downloadGT5-Unofficial-7011e367ac5ccc34473283d6245bc2cec93b835e.tar.gz
GT5-Unofficial-7011e367ac5ccc34473283d6245bc2cec93b835e.tar.bz2
GT5-Unofficial-7011e367ac5ccc34473283d6245bc2cec93b835e.zip
Removed Hard dependency on gregtech as another Project and added dev versions of all requires libs.
Also started work on GT-EU EnderIO conduits, adding @Optional annotations where possible and a few other nice things.
Diffstat (limited to 'src/Java/binnie/craftgui/events/EventCycleChanged.java')
-rw-r--r--src/Java/binnie/craftgui/events/EventCycleChanged.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/Java/binnie/craftgui/events/EventCycleChanged.java b/src/Java/binnie/craftgui/events/EventCycleChanged.java
deleted file mode 100644
index 628a177449..0000000000
--- a/src/Java/binnie/craftgui/events/EventCycleChanged.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package binnie.craftgui.events;
-
-import binnie.craftgui.core.IWidget;
-
-public class EventCycleChanged
- extends Event
-{
- public int value;
-
- public EventCycleChanged(IWidget origin, int value)
- {
- super(origin);
- this.value = value;
- }
-
- public int getValue()
- {
- return this.value;
- }
-}