Update ActionListener.java

Fixed another silly mistake on my part, really shouldn't have been doing these edits on github itself.
This commit is contained in:
matt123337
2014-07-16 14:22:07 -04:00
parent 013ba04de8
commit ee2656cdd0
@@ -1,7 +1,9 @@
package org.rev317.min.api.events.listeners;
import org.rev317.min.api.events.ActionEvent;
public interface ActionListener{
public void onGameAction(int id,int cmd1,int cmd2,int cmd3);
public void onGameAction(ActionEvent event);
}