project: we are actually up to date now, thanks blue!

This commit is contained in:
TheRealNull
2021-01-04 06:58:20 -05:00
parent d0c8a8daec
commit b5bb349259
79 changed files with 668 additions and 335 deletions

View File

@@ -1320,4 +1320,34 @@ public interface RSClient extends RSGameShell, Client
@Import("scriptActiveWidget")
RSWidget getScriptActiveWidget();
@Import("scriptDotWidget")
RSWidget getScriptDotWidget();
RSScriptEvent createRSScriptEvent(Object... args);
void runScriptEvent(RSScriptEvent event);
@Import("Script_cached")
RSEvictingDualNodeHashTable getScriptCache();
@Import("StructDefinition_cached")
RSEvictingDualNodeHashTable getRSStructCompositionCache();
@Import("StructDefinition_getStructDefinition")
RSStructComposition getRSStructComposition(int id);
@Import("getParamDefinition")
RSParamComposition getRSParamComposition(int id);
@Construct
RSIntegerNode newIntegerNode(int contents);
@Construct
RSObjectNode newObjectNode(Object contents);
@Construct
RSIterableNodeHashTable newIterableNodeHashTable(int size);
RSVarbitComposition getVarbitComposition(int id);
}