Move field hooks to mixins
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
*/
|
||||
package net.runelite.mapping;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
@@ -32,8 +33,9 @@ import java.lang.annotation.Target;
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(
|
||||
{
|
||||
ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR
|
||||
ElementType.METHOD, ElementType.CONSTRUCTOR
|
||||
})
|
||||
@Documented
|
||||
public @interface Hook
|
||||
{
|
||||
String value();
|
||||
|
||||
Reference in New Issue
Block a user