1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package rosegoldaddons.events; import net.minecraftforge.fml.common.eventhandler.Cancelable; import net.minecraftforge.fml.common.eventhandler.Event; @Cancelable public class ClickEvent extends Event { public static class Right extends ClickEvent { } public static class Left extends ClickEvent { } public static class Middle extends ClickEvent { } }