Add getName() to AnimalTamer

By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
Bukkit/Spigot 2012-05-06 13:36:33 -05:00
parent d27484d7b0
commit 7769f579c6

View file

@ -1,3 +1,9 @@
package org.bukkit.entity;
public interface AnimalTamer {}
public interface AnimalTamer {
/**
* This is the name of the specified AnimalTamer.
* @return The name to reference on tamed animals
*/
public String getName();
}