Examples of IFMP


Examples of appeng.integration.abstraction.IFMP

  }

  @Override
  public void serverPacketData(INetworkInfo manager, AppEngPacket packet, EntityPlayer player)
  {
    IFMP fmp = (IFMP) AppEng.instance.getIntegration( IntegrationType.FMP );
    if ( fmp != null )
    {
      EntityPlayerMP sender = (EntityPlayerMP) player;
      MinecraftForge.EVENT_BUS.post( fmp.newFMPPacketEvent( sender ) ); // when received it just posts this event.
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.