Added new set/get age methods to Animals

By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot 2011-11-24 20:16:16 +00:00
parent d29402070b
commit 34f857ad15

View file

@ -4,4 +4,18 @@ package org.bukkit.entity;
* Represents an Animal.
*
*/
public interface Animals extends Creature {}
public interface Animals extends Creature {
/**
* Gets the age of this animal.
*
* @return Age
*/
public int getAge();
/**
* Sets the age of this animal.
*
* @param age New age
*/
public void setAge(int age);
}