mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2026-08-12 14:11:00 -06:00
8 lines
194 B
Java
8 lines
194 B
Java
package org.runite.client;
|
|
|
|
final class AssembledMethodContainer {
|
|
int[] intArguments;
|
|
RSString[] stringArguments;
|
|
AssembledMethod assembledMethod;
|
|
int currentProgramCounter = -1;
|
|
}
|