net.minecraftforge.fml.common.LoadController Java Examples

The following examples show how to use net.minecraftforge.fml.common.LoadController. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ModContainer.java    From AdvancedRocketry with MIT License 5 votes vote down vote up
@Override
public boolean registerBus(EventBus bus, LoadController controller)
{
	System.out.println("********* registerBus. OK");
	bus.register(this);
	return true;
}
 
Example #2
Source File: NovaMinecraftPreloader.java    From NOVA-Core with GNU Lesser General Public License v3.0 4 votes vote down vote up
@Override
public boolean registerBus(EventBus bus, LoadController controller) {
	bus.register(this);
	return true;
}
 
Example #3
Source File: NovaMinecraftPreloader.java    From NOVA-Core with GNU Lesser General Public License v3.0 4 votes vote down vote up
@Override
public boolean registerBus(EventBus bus, LoadController controller) {
	bus.register(this);
	return true;
}
 
Example #4
Source File: NEIModContainer.java    From NotEnoughItems with MIT License 4 votes vote down vote up
@Override
public boolean registerBus(EventBus bus, LoadController controller) {
    bus.register(this);
    return true;
}
 
Example #5
Source File: TFC2Core.java    From TFC2 with GNU General Public License v3.0 4 votes vote down vote up
@Override
public boolean registerBus(EventBus bus, LoadController controller) {
	bus.register(this);
	return true;
}
 
Example #6
Source File: OpenModsCore.java    From OpenModsLib with MIT License 4 votes vote down vote up
@Override
public boolean registerBus(EventBus bus, LoadController controller) {
	bus.register(this);
	return true;
}