Wrapping coremods as tweakers. Part 1.

This commit is contained in:
Christian 2013-10-20 11:53:07 +02:00
parent cfb78d482a
commit f7a6bb7eb7
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package cpw.mods.fml.common.launcher;
import cpw.mods.fml.relauncher.IFMLLoadingPlugin;
public class ASMCoreModTweakWrapperGenerator {
private IFMLLoadingPlugin coreModToWrap;
public ASMCoreModTweakWrapperGenerator(IFMLLoadingPlugin toWrap) {
}
}