Package net.minecraftforge.fml
Interface IModStateProvider
- All Known Implementing Classes:
 ForgeStatesProvider,ModStateProvider
public interface IModStateProvider
Provides a list of mod loading states which the mod loader may transition between.
 
There may be multiple mod state providers in a single application, where all states from each provider is combined into a single list and ordered.
- 
Method Summary
Modifier and TypeMethodDescriptionReturns the list of mod loading states known to this provider. 
- 
Method Details
- 
getAllStates
List<IModLoadingState> getAllStates()Returns the list of mod loading states known to this provider.- Returns:
 - the list of mod loading states known to this provider
 
 
 -