New Entity Classes implementing the new Bukkit interfaces.
This commit is contained in:
committed by
Dinner Bone
parent
5209e17e1b
commit
431f2f62cf
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user