Files
Bukkit/src/main/java/org/bukkit/entity/Creature.java
Andrew Ardill b1729b097e 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

11 lines
194 B
Java

package org.bukkit.entity;
/**
* Represents a Creature. Any LivingEntity that is not human is a Creature.
* @author Cogito
*
*/
public interface Creature extends LivingEntity{
}