mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2025-12-20 05:20:24 -07:00
Initial deob and project structure
This commit is contained in:
commit
e2d5c0a1e0
671 changed files with 108157 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
package org.openrs2.deob.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ ElementType.PARAMETER })
|
||||
public @interface OriginalArg {
|
||||
int value();
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
package org.openrs2.deob.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ ElementType.TYPE })
|
||||
public @interface OriginalClass {
|
||||
String value();
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package org.openrs2.deob.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.METHOD })
|
||||
public @interface OriginalMember {
|
||||
String owner();
|
||||
String name();
|
||||
String descriptor();
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
package org.openrs2.deob.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ ElementType.LOCAL_VARIABLE, ElementType.PARAMETER })
|
||||
public @interface Pc {
|
||||
int value();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue