Skip to content

Instantly share code, notes, and snippets.

Created April 16, 2016 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/379b026a3ec2591aa0441ffa5840b66f to your computer and use it in GitHub Desktop.
Save anonymous/379b026a3ec2591aa0441ffa5840b66f to your computer and use it in GitHub Desktop.
package mercenarymod.entidades.entidadAgujero;
import net.minecraft.entity.Entity;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.world.World;
public class entidadAgujero extends Entity
{
public entidadAgujero(World worldIn) {
super(worldIn);
// TODO Auto-generated constructor stub
}
public entidadAgujero(World worldIn, double x, double y, double z) {
super(worldIn);
this.setPosition(x, y, z);
// TODO Auto-generated constructor stub
}
@Override
protected void entityInit() {
// TODO Auto-generated method stub
}
@Override
protected void readEntityFromNBT(NBTTagCompound tagCompund) {
// TODO Auto-generated method stub
}
@Override
protected void writeEntityToNBT(NBTTagCompound tagCompound) {
// TODO Auto-generated method stub
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment