14 lines
359 B
Java
14 lines
359 B
Java
package yalter.mousetweaks.api;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* Put this on your GuiScreen to disable Mouse Tweaks.
|
|
*/
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.TYPE)
|
|
public @interface MouseTweaksIgnore {
|
|
} |