switch MouseTweaks disabling method

This commit is contained in:
PrototypeTrousers
2023-10-12 17:40:56 -03:00
parent 10a12a9b97
commit 467bb91628
3 changed files with 21 additions and 136 deletions
@@ -0,0 +1,14 @@
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 {
}