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

By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
CraftBukkit/Spigot
2011-01-03 17:44:43 +08:00
parent 73f551d19c
commit 1e159ac832
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);
}
}