blob: 13abc486e67407173c83535592c51ba9c7802cca (
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.effects;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
public class EffectsList
{
private static ModifierEffects blazePowder, enderEye, feather;
private static boolean isInitialized = false;
/**
* @param e
*/
public static void postInit(FMLPostInitializationEvent e)
{
if (!isInitialized){
blazePowder = new EffectBlazePowder();
enderEye = new EffectEnderEye();
feather = new EffectFeather();
isInitialized = true;
}
}
}
|