project(api): remove menu event

This commit is contained in:
Owain van Brakel
2022-04-25 10:56:06 +02:00
parent 015facf0cc
commit 060d45c617
2 changed files with 0 additions and 45 deletions

View File

@@ -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;
}
}