blob: 548004e95a5990c65b66673cc437e7965b485481 (
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
28
29
30
31
32
|
package darkknight.jewelrycraft.thirdparty;
import darkknight.jewelrycraft.JewelrycraftMod;
import fiskfille.alpaca.common.potion.AlpacaPotions;
/**
* @author Sorin
*/
public class Alpaca implements IThirdParty
{
@Override
public void preInit()
{}
@Override
public void init()
{}
@Override
public void postInit()
{
JewelrycraftMod.alpacaPotion = AlpacaPotions.potionAlpaca;
}
@Override
public void clientSide()
{}
@Override
public void clientInit()
{}
}
|