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,15 @@
package org.bukkit.craftbukkit.entity;
import net.minecraft.server.EntityFallingSand;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.craftbukkit.entity.CraftEntity;
import org.bukkit.entity.FallingSand;
public class CraftFallingSand extends CraftEntity implements FallingSand {
public CraftFallingSand(CraftServer server, EntityFallingSand entity) {
super(server, entity);
}
}