Fix mouse tweaks interfering with Crafter Manager

This commit is contained in:
raoulvdberge
2018-04-06 11:30:52 +02:00
parent f04bbb4669
commit e3654fed56
2 changed files with 16 additions and 0 deletions

View File

@@ -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 the wheel tweak.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface MouseTweaksDisableWheelTweak {
}