rl-api: add invoke and return opcodes

This commit is contained in:
15987632
2020-02-01 12:14:35 -05:00
parent ea61466a90
commit e4a6cbec2f

View File

@@ -29,6 +29,16 @@ package net.runelite.api;
*/
public class Opcodes
{
/**
* opcode used to return from scripts.
*/
public static final int RETURN = 21;
/**
* opcode used to invoke scripts.
*/
public static final int INVOKE = 40;
/**
* RuneLite execution opcode used to inject scripts.
*/