2016-05-08 19:26:40 +02:00
|
|
|
package techreborn.compat.tinkers;
|
|
|
|
|
|
|
|
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
|
|
|
|
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
|
|
|
|
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
|
|
|
import net.minecraftforge.fml.common.event.FMLServerStartingEvent;
|
|
|
|
import techreborn.compat.ICompatModule;
|
|
|
|
|
2016-05-09 03:02:11 +02:00
|
|
|
/**
|
|
|
|
* @author Prospector on 08/05/16
|
|
|
|
*/
|
2016-05-08 19:26:40 +02:00
|
|
|
public class CompatModuleTinkers implements ICompatModule
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-05-09 03:02:11 +02:00
|
|
|
public CompatModuleTinkers()
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override public void preInit(FMLPreInitializationEvent event)
|
|
|
|
{
|
|
|
|
TinkersFluids.init();
|
2016-05-08 19:26:40 +02:00
|
|
|
}
|
|
|
|
|
2016-05-09 03:02:11 +02:00
|
|
|
@Override public void init(FMLInitializationEvent event)
|
|
|
|
{
|
2016-05-08 19:26:40 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-05-09 03:02:11 +02:00
|
|
|
@Override public void postInit(FMLPostInitializationEvent event)
|
|
|
|
{
|
2016-05-08 19:26:40 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-05-09 03:02:11 +02:00
|
|
|
@Override public void serverStarting(FMLServerStartingEvent event)
|
2016-05-08 19:26:40 +02:00
|
|
|
{
|
2016-05-09 03:02:11 +02:00
|
|
|
|
2016-05-08 19:26:40 +02:00
|
|
|
}
|
2016-05-09 03:02:11 +02:00
|
|
|
|
|
|
|
|
2016-05-08 19:26:40 +02:00
|
|
|
}
|