forked from 2009Scape/Server
Added initial version
This commit is contained in:
commit
b1dccb3fed
14153 changed files with 1285206 additions and 0 deletions
18
Client/src/main/java/org/runite/client/AssembledMethod.java
Normal file
18
Client/src/main/java/org/runite/client/AssembledMethod.java
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue