package darkknight.jewelrycraft.events; import cpw.mods.fml.common.eventhandler.SubscribeEvent; import cpw.mods.fml.common.gameevent.PlayerEvent; import cpw.mods.fml.common.gameevent.TickEvent; /** * @author Sorin * */ public class EventCommonHandler { @SubscribeEvent public void onItemCrafted(PlayerEvent.ItemCraftedEvent event) { } @SubscribeEvent public void onPlayerTick(TickEvent.PlayerTickEvent event) { } }