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