diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-02-19 17:38:35 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-02-19 17:38:35 +1000 |
commit | 7011e367ac5ccc34473283d6245bc2cec93b835e (patch) | |
tree | cc5675471f1101631bec2cde9713cb9c0004cc8f /src/Java/binnie/craftgui/events/EventButtonClicked.java | |
parent | c68c67d74f39c3eb075ac29e88936a1976ef089b (diff) | |
download | GT5-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/EventButtonClicked.java')
-rw-r--r-- | src/Java/binnie/craftgui/events/EventButtonClicked.java | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Java/binnie/craftgui/events/EventButtonClicked.java b/src/Java/binnie/craftgui/events/EventButtonClicked.java deleted file mode 100644 index 1823e6d430..0000000000 --- a/src/Java/binnie/craftgui/events/EventButtonClicked.java +++ /dev/null @@ -1,21 +0,0 @@ -package binnie.craftgui.events; - -import binnie.craftgui.core.IWidget; - -public class EventButtonClicked - extends Event -{ - public EventButtonClicked(IWidget origin) - { - super(origin); - } - - public static abstract class Handler - extends EventHandler<EventButtonClicked> - { - public Handler() - { - super(); - } - } -} |