Added initial version

This commit is contained in:
Ceikry 2021-03-07 20:37:32 -06:00
commit b1dccb3fed
14153 changed files with 1285206 additions and 0 deletions

View file

@ -0,0 +1,18 @@
package org.runite.client;
import org.rs09.client.Node;
import org.rs09.client.data.HashTable;
final class AssembledMethod extends Node {
// The ints are loaded in this order
int numberOfIntsToCopy;
int numberOfRSStringsToCopy;
int numberOfIntArguments;
int numberOfStringArguments;
int[] assemblyInstructions;
int[] instructionOperands;
HashTable[] switchHashTable;
RSString[] stringInstructionOperands;
}