From f7a6bb7eb73db3320fb8ec270a71652c3a42d3bd Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 20 Oct 2013 11:53:07 +0200 Subject: [PATCH] Wrapping coremods as tweakers. Part 1. --- .../launcher/ASMCoreModTweakWrapperGenerator.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 fml/common/cpw/mods/fml/common/launcher/ASMCoreModTweakWrapperGenerator.java diff --git a/fml/common/cpw/mods/fml/common/launcher/ASMCoreModTweakWrapperGenerator.java b/fml/common/cpw/mods/fml/common/launcher/ASMCoreModTweakWrapperGenerator.java new file mode 100644 index 000000000..feb701e7f --- /dev/null +++ b/fml/common/cpw/mods/fml/common/launcher/ASMCoreModTweakWrapperGenerator.java @@ -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) { + + } + +}