detachedcamera: interaction (#2373)

* detached camera: disallow object interaction

* detached camera: disallow entity interaction

* add option to turn it back on

* cant click anything with that you moron

* forgot this

* kinda "tired and emotional" ngl
This commit is contained in:
ThatGamerBlue
2020-02-25 22:50:18 +00:00
committed by GitHub
parent b4068705f7
commit e33ad11cdc
4 changed files with 88 additions and 1 deletions

View File

@@ -2000,4 +2000,14 @@ public interface Client extends GameShell
* Sets the starting index in the item id array for GE search
*/
void setGeSearchResultIndex(int index);
/**
* Sets values related to jagex compliance
*/
void setComplianceValue(@Nonnull String key, boolean value);
/**
* Gets values related to jagex compliance
*/
boolean getComplianceValue(@Nonnull String key);
}