Added minecart classes, vehicle class, and the ability to spawn minecarts. StorageMinecart needs a getInventory(), but that is waiting on the addition of inventory code.

This commit is contained in:
sk89q
2011-01-03 14:03:17 +08:00
committed by Dinner Bone
parent a1b9babb9f
commit 0a418f8fb9
5 changed files with 103 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
package org.bukkit;
/**
* Represents a powered minecart.
*
* @author sk89q
*/
public interface PoweredMinecart extends Minecart {
}