
These are place holders at the moment, to be used when determining entity type. Further functionality could be added to these interfaces later.
15 lines
159 B
Java
15 lines
159 B
Java
/**
|
|
*
|
|
*/
|
|
package org.bukkit.entity;
|
|
|
|
/**
|
|
* Represents a Slime.
|
|
*
|
|
* @author Cogito
|
|
*
|
|
*/
|
|
public interface Slime extends LivingEntity {
|
|
|
|
}
|