Andrew Ardill 06d99445d9 Added interfaces for every entity type. Most (if not all) are empty.
These are place holders at the moment, to be used when determining
entity type. Further functionality could be added to these interfaces
later.
2011-01-18 00:20:05 +08:00

15 lines
150 B
Java

/**
*
*/
package org.bukkit.entity;
/**
* Represents a Cow.
*
* @author Cogito
*
*/
public interface Cow extends Animals {
}