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.EntitySnowball;
import org.bukkit.Snowball;
/**
* A snowball.
*
* @author sk89q
*/
public class CraftSnowball extends CraftEntity implements Snowball {
public CraftSnowball(CraftServer server, EntitySnowball ent) {
super(server, ent);
}
}