Menu dummy

This commit is contained in:
Clisprail
2014-04-07 19:48:52 +02:00
parent b120a869f1
commit 3ccded6853
+13 -1
View File
@@ -163,13 +163,25 @@ public class Menu {
}
/**
* Sends an action the client
* Sends an action to the client
* @param action
* @param cmd1
* @param cmd2
* @param cmd3
*/
public static void sendAction(int action, int cmd1, int cmd2, int cmd3) {
sendAction(action, cmd1, cmd2, cmd3, 0);
}
/**
* Sends an action to the client
* @param action
* @param cmd1
* @param cmd2
* @param cmd3
* @param cmd4
*/
public static void sendAction(int action, int cmd1, int cmd2, int cmd3, int cmd4) {
if (constants == null) {
constants = Context.getInstance().getHookParser().getConstants();
}