A special thanks goes to @aerouk for almost all of the changes found here. By: Wesley Wolfe <weswolf@aol.com>
10 lines
169 B
Java
10 lines
169 B
Java
package org.bukkit.entity;
|
|
|
|
/**
|
|
* Represents an Ender Signal, which is often created upon throwing an ender
|
|
* eye
|
|
*/
|
|
public interface EnderSignal extends Entity {
|
|
|
|
}
|