blob: 1aa45e14fca80a570b50d16d311f69dfbfa99343 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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) {
}
}
|