Package appeng.facade

Examples of appeng.facade.FacadePart


  @Override
  public FacadePart createPartFromItemStack(ItemStack is, ForgeDirection side)
  {
    ItemStack in = getTextureItem( is );
    if ( in != null )
      return new FacadePart( is, side );
    return null;
  }
View Full Code Here


  public IFacadePart createFacadePart(Block blk, int meta, ForgeDirection side)
  {
    try
    {
      ItemStack fs = ItemFacade.getFacade( blk, meta );
      return new FacadePart( fs, side );
    }
    catch (Throwable ignored)
    {

    }

    try
    {
      ItemStack fs = ItemFacade.getStack( blk, meta );
      return new FacadePart( fs, side );
    }
    catch (Throwable ignored)
    {

    }
View Full Code Here

  }

  @Override
  public IFacadePart createFacadePart(ItemStack fs, ForgeDirection side)
  {
    return new FacadePart( fs, side );
  }
View Full Code Here

TOP

Related Classes of appeng.facade.FacadePart

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.