Add obfuscated name/getter annotations

This commit is contained in:
Adam
2015-11-22 09:30:28 -06:00
parent 484d153be3
commit 7d3acc0517
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package net.runelite.mapping;
public @interface ObfuscatedGetter
{
int intValue() default 0;
long longValue() default 0L;
}

View File

@@ -0,0 +1,6 @@
package net.runelite.mapping;
public @interface ObfuscatedName
{
String value();
}