blob: dea04f9689b5260ca4f2f5ccbe9a244808dc1446 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package darkknight.jewelrycraft.events;
import net.minecraft.nbt.NBTTagCompound;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.gameevent.PlayerEvent;
import cpw.mods.fml.common.gameevent.TickEvent;
import cpw.mods.fml.common.gameevent.TickEvent.Phase;
import cpw.mods.fml.relauncher.Side;
import darkknight.jewelrycraft.util.PlayerUtils;
import darkknight.jewelrycraft.util.Variables;
/**
* @author Sorin
*
*/
public class EventCommonHandler
{
@SubscribeEvent
public void onItemCrafted(PlayerEvent.ItemCraftedEvent event)
{
}
@SubscribeEvent
public void onPlayerTick(TickEvent.PlayerTickEvent event)
{
}
}
|