13
0
geforkt von Mirrors/Paper
Bukkit/Spigot 75a18fd5ad Minecraft 1.12-pre2 API Changes
By: md_5 <git@md-5.net>
2017-05-14 12:00:00 +10:00

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();
}