Some basic work for #70
This commit is contained in:
parent
38b73cd6a7
commit
85bfa95c1c
2 changed files with 39 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
||||||
|
package techreborn.compat.minetweaker;
|
||||||
|
|
||||||
|
import stanhebben.zenscript.annotations.ZenClass;
|
||||||
|
|
||||||
|
@ZenClass("techreborn.crafting.AlloySmelter")
|
||||||
|
public class MTAlloySmelter {
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
package techreborn.compat.minetweaker;
|
||||||
|
|
||||||
|
import cpw.mods.fml.common.event.FMLInitializationEvent;
|
||||||
|
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
|
||||||
|
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
|
||||||
|
import cpw.mods.fml.common.event.FMLServerStartingEvent;
|
||||||
|
import minetweaker.MineTweakerAPI;
|
||||||
|
import techreborn.compat.ICompatModule;
|
||||||
|
|
||||||
|
|
||||||
|
public class MinetweakerCompat implements ICompatModule {
|
||||||
|
@Override
|
||||||
|
public void preInit(FMLPreInitializationEvent event) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void init(FMLInitializationEvent event) {
|
||||||
|
MineTweakerAPI.registerClass(MTAlloySmelter.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void postInit(FMLPostInitializationEvent event) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void serverStarting(FMLServerStartingEvent event) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue