ForgePatch/fml/common/cpw/mods/fml/relauncher/FMLCorePlugin.java

54 lines
1.4 KiB
Java

/*
* Forge Mod Loader
* Copyright (c) 2012-2013 cpw.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v2.1
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* Contributors:
* cpw - implementation
*/
package cpw.mods.fml.relauncher;
import java.util.Map;
public class FMLCorePlugin implements IFMLLoadingPlugin
{
@Override
public String[] getLibraryRequestClass()
{
return new String[] {"cpw.mods.fml.relauncher.CoreFMLLibraries"};
}
@Override
public String[] getASMTransformerClass()
{
return new String[] {
"cpw.mods.fml.common.asm.transformers.PatchingTransformer",
"cpw.mods.fml.common.asm.transformers.AccessTransformer",
"cpw.mods.fml.common.asm.transformers.MarkerTransformer",
"cpw.mods.fml.common.asm.transformers.SideTransformer",
};
}
@Override
public String getModContainerClass()
{
return "cpw.mods.fml.common.FMLDummyContainer";
}
@Override
public String getSetupClass()
{
return "cpw.mods.fml.common.asm.FMLSanityChecker";
}
@Override
public void injectData(Map<String, Object> data)
{
// don't care about this data
}
}