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

@@ -10,7 +10,7 @@ import org.bukkit.entity.Snowball;
* @author sk89q
*/
public class CraftSnowball extends CraftEntity implements Snowball {
public CraftSnowball(CraftServer server, EntitySnowball ent) {
super(server, ent);
public CraftSnowball(CraftServer server, EntitySnowball entity) {
super(server, entity);
}
}