forked from openrs2/openrs2
I'm intending to use this in a patched version of Fernflower to track the original index of each local variable's STORE instruction, allowing us to retain local variable names even if the deobfuscator is run multiple times.master
parent
be14ffdc2d
commit
6f7d9be26c
@ -0,0 +1,9 @@ |
||||
package dev.openrs2.deob.annotation; |
||||
|
||||
import java.lang.annotation.ElementType; |
||||
import java.lang.annotation.Target; |
||||
|
||||
@Target({ ElementType.LOCAL_VARIABLE }) |
||||
public @interface Pc { |
||||
int value(); |
||||
} |
Loading…
Reference in new issue