[Bleeding] Added EntityType to replace CreatureType.

This commit is contained in:
Celtic Minstrel
2012-02-14 23:52:38 -05:00
committed by EvilSeph
parent 4b9f306913
commit cbb9bc0fa3
8 changed files with 261 additions and 16 deletions

View File

@@ -226,4 +226,10 @@ public interface Entity {
* @param type Effect to play.
*/
public void playEffect(EntityEffect type);
/**
* Get the type of the entity.
* @return The entity type.
*/
public EntityType getType();
}