
These are place holders at the moment, to be used when determining entity type. Further functionality could be added to these interfaces later.
12 lines
143 B
Java
12 lines
143 B
Java
package org.bukkit.entity;
|
|
|
|
/**
|
|
* Represents an Animal.
|
|
*
|
|
* @author Cogito
|
|
*
|
|
*/
|
|
public interface Animals extends Creature{
|
|
|
|
}
|