upstream drawAfterWidgets

This commit is contained in:
therealunull
2020-12-15 15:24:06 -05:00
parent 3ff221f6fd
commit da96331491
8 changed files with 56 additions and 11 deletions

View File

@@ -57,6 +57,11 @@ public class InvokeInterface extends Instruction implements InvokeInstruction
super(instructions, type);
}
public InvokeInterface(Instructions instructions, Method method) {
super(instructions, InstructionType.INVOKEINTERFACE);
this.method = method;
}
@Override
public String toString()
{