New Entity Classes implementing the new Bukkit interfaces.

This commit is contained in:
Andrew Ardill
2011-01-17 16:12:47 +08:00
committed by Dinner Bone
parent 5209e17e1b
commit 431f2f62cf
28 changed files with 323 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
package org.bukkit.craftbukkit.entity;
import net.minecraft.server.EntitySheep;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.entity.Sheep;
public class CraftSheep extends CraftAnimals implements Sheep {
public CraftSheep(CraftServer server, EntitySheep entity) {
super(server, entity);
}
}