13
0
geforkt von Mirrors/Paper

Added UniqueId to entities. Thanks Afforess!

By: EvilSeph <evilseph@unaligned.org>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2011-06-07 04:21:11 -04:00
Ursprung c6821f93c4
Commit b91a8f0389

Datei anzeigen

@ -7,6 +7,7 @@ import org.bukkit.event.entity.EntityDamageEvent;
import org.bukkit.util.Vector;
import java.util.List;
import java.util.UUID;
/**
* Represents a base entity in the world
@ -182,4 +183,9 @@ public interface Entity {
*/
public EntityDamageEvent getLastDamageCause();
/**
* Returns a unique and persistent id for this entity
* @return unique id
*/
public UUID getUniqueId();
}