Added LivingEntity.throwEgg() and LivingEntity.throwSnowball().

This commit is contained in:
sk89q
2011-01-03 17:44:43 +08:00
committed by Dinner Bone
parent 497de4d81c
commit 5a9b2d0c2e
3 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package org.bukkit.craftbukkit;
import net.minecraft.server.EntityEgg;
import org.bukkit.Egg;
/**
* An egg.
*
* @author sk89q
*/
public class CraftEgg extends CraftEntity implements Egg {
public CraftEgg(CraftServer server, EntityEgg ent) {
super(server, ent);
}
}