get tinkers in the dev env (no compat yet)
This commit is contained in:
parent
caaa5a3e7f
commit
a6cfd90339
3 changed files with 39 additions and 2 deletions
|
@ -0,0 +1,35 @@
|
|||
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;
|
||||
|
||||
public class CompatModuleTinkers implements ICompatModule
|
||||
{
|
||||
|
||||
@Override
|
||||
public void preInit(FMLPreInitializationEvent event) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init(FMLInitializationEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void postInit(FMLPostInitializationEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void serverStarting(FMLServerStartingEvent event) {
|
||||
|
||||
}
|
||||
|
||||
public CompatModuleTinkers()
|
||||
{
|
||||
super();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue