Package com.mojang.ld22.entity

Examples of com.mojang.ld22.entity.Furniture.take()


  }

  public boolean interact(Player player, Entity entity, int attackDir) {
    if (entity instanceof Furniture) {
      Furniture f = (Furniture) entity;
      f.take(player);
      return true;
    }
    return false;
  }
}
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.