Update Bukkit for Minecraft 1.7.8

By: Travis Watkins <amaranth@ubuntu.com>
This commit is contained in:
Bukkit/Spigot
2014-04-10 20:06:14 -05:00
parent 9581550637
commit 07c1670354
9 changed files with 86 additions and 15 deletions

View File

@@ -1,11 +1,20 @@
package org.bukkit.entity;
import java.util.UUID;
public interface AnimalTamer {
/**
* This is the name of the specified AnimalTamer.
*
* @return The name to reference on tamed animals
* @return The name to reference on tamed animals or null if a name cannot be obtained
*/
public String getName();
/**
* This is the UUID of the specified AnimalTamer.
*
* @return The UUID to reference on tamed animals
*/
public UUID getUniqueId();
}