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.

By: Andrew Ardill <andrew.ardill@gmail.com>
This commit is contained in:
Bukkit/Spigot
2011-01-17 16:28:28 +08:00
parent 3b1fe7dcf7
commit 6ab2ec9f85
22 changed files with 297 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/**
*
*/
package org.bukkit.entity;
/**
* Represents a Cow.
*
* @author Cogito
*
*/
public interface Cow extends Animals {
}