public static FMLMessage.OpenGui create (int windowId, String modId, int modGuiId, int x, int y, int z) { try { return ConstructorUtils.invokeConstructor(FMLMessage.OpenGui.class, windowId, modId, modGuiId, x, y, z); } catch (Exception e) { Util.logger.logException("Unable to construct FMLMessage.OpenGui using factory!", e); return null; } }
public OpenGuiWrapper(FMLMessage.OpenGui other) { InjectionHandler.copyAllFieldsFrom(this, other, FMLMessage.OpenGui.class); }
public OpenGuiFilterServer(RemoteGuiNetworkManager manager) { m_OpenGuiMatcher = TypeParameterMatcher.get(FMLMessage.OpenGui.class); m_manager = manager; }