geforkt von Mirrors/Paper
15 Zeilen
272 B
Java
15 Zeilen
272 B
Java
|
package org.bukkit;
|
||
|
|
||
|
/**
|
||
|
* Represents an object which has a {@link NamespacedKey} attached to it.
|
||
|
*/
|
||
|
public interface Keyed {
|
||
|
|
||
|
/**
|
||
|
* Return the namespaced identifier for this object.
|
||
|
*
|
||
|
* @return this object's key
|
||
|
*/
|
||
|
NamespacedKey getKey();
|
||
|
}
|