Create ActionListener.java

Used for for Action listener (as the file name implies)
This commit is contained in:
matt123337
2014-07-16 14:01:11 -04:00
parent 234a2809f2
commit 2cbc0ffa7c
@@ -0,0 +1,7 @@
package org.rev317.min.api.event.listeners;
public interface ActionListener{
public void onGameAction(int id,int cmd1,int cmd2,int cmd3);
}