Package appeng.core.api

Examples of appeng.core.api.IIMCHandler


  {
    for (IMCMessage m : event.getMessages())
    {
      try
      {
        IIMCHandler handler = IMCHandlers.get( m.key );
        if ( handler != null )
          handler.post( m );
        else
          throw new RuntimeException( "Invalid IMC Called: " + m.key );
      }
      catch (Throwable t)
      {
View Full Code Here

TOP

Related Classes of appeng.core.api.IIMCHandler

Copyright © 2018 www.massapicom. 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.