You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
538 B
Java
27 lines
538 B
Java
package net.minecraft.tileentity;
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.world.World;
|
|
|
|
public interface IHopper extends IInventory
|
|
{
|
|
/**
|
|
* Returns the worldObj for this tileEntity.
|
|
*/
|
|
World getWorldObj();
|
|
|
|
/**
|
|
* Gets the world X position for this hopper entity.
|
|
*/
|
|
double getXPos();
|
|
|
|
/**
|
|
* Gets the world Y position for this hopper entity.
|
|
*/
|
|
double getYPos();
|
|
|
|
/**
|
|
* Gets the world Z position for this hopper entity.
|
|
*/
|
|
double getZPos();
|
|
} |