net.minecraftforge.fml.common.network.IGuiHandler Java Examples

The following examples show how to use net.minecraftforge.fml.common.network.IGuiHandler. 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: OpenClientProxy.java    From OpenModsLib with MIT License 4 votes vote down vote up
@Override
public IGuiHandler wrapHandler(IGuiHandler modSpecificHandler) {
	return new ClientGuiHandler(modSpecificHandler);
}
 
Example #2
Source File: OpenServerProxy.java    From OpenModsLib with MIT License 4 votes vote down vote up
@Override
public IGuiHandler wrapHandler(IGuiHandler modSpecificHandler) {
	return new CommonGuiHandler(modSpecificHandler);
}
 
Example #3
Source File: CommonGuiHandler.java    From OpenModsLib with MIT License 4 votes vote down vote up
public CommonGuiHandler(IGuiHandler wrappedHandler) {
	this.wrappedHandler = wrappedHandler;
}
 
Example #4
Source File: ClientGuiHandler.java    From OpenModsLib with MIT License 4 votes vote down vote up
public ClientGuiHandler(IGuiHandler wrappedHandler) {
	super(wrappedHandler);
}
 
Example #5
Source File: IOpenModsProxy.java    From OpenModsLib with MIT License votes vote down vote up
public IGuiHandler wrapHandler(IGuiHandler modSpecificHandler);