cpw.mods.fml.relauncher
Interface IFMLCallHook

All Superinterfaces:
Callable<Void>
All Known Implementing Classes:
FMLSanityChecker

public interface IFMLCallHook
extends Callable<Void>

This call hook allows for code to execute at the very early stages of minecraft initialization. FML uses it to validate that there is a safe environment for further loading of FML.

Author:
cpw

Method Summary
 void injectData(Map<String,Object> data)
          Injected with data from the FML environment: "classLoader" : The FML Class Loader
 
Methods inherited from interface java.util.concurrent.Callable
call
 

Method Detail

injectData

void injectData(Map<String,Object> data)
Injected with data from the FML environment: "classLoader" : The FML Class Loader

Parameters:
data -