project(api): remove menu event
This commit is contained in:
@@ -1,31 +0,0 @@
|
||||
package net.runelite.api.events;
|
||||
|
||||
/**
|
||||
* Gets sent before menu handling code is ran, once per client tick.
|
||||
* Can be consumed, skipping this method this tick.
|
||||
*/
|
||||
public class Menu
|
||||
{
|
||||
public static final Menu MENU = new Menu();
|
||||
|
||||
private Menu()
|
||||
{
|
||||
}
|
||||
|
||||
private boolean run;
|
||||
|
||||
public void reset()
|
||||
{
|
||||
run = true;
|
||||
}
|
||||
|
||||
public void dontRun()
|
||||
{
|
||||
run = false;
|
||||
}
|
||||
|
||||
public boolean shouldRun()
|
||||
{
|
||||
return run;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user