Files
Paper/paper-api/src/main/java/org/bukkit/entity/Tadpole.java
Bukkit/Spigot ec575f5252 Update to Minecraft 1.19
By: md_5 <git@md-5.net>
2022-06-08 02:00:00 +10:00

22 lines
319 B
Java

package org.bukkit.entity;
/**
* A baby {@link Frog}.
*/
public interface Tadpole extends Fish {
/**
* Gets the age of this mob.
*
* @return Age
*/
public int getAge();
/**
* Sets the age of this mob.
*
* @param age New age
*/
public void setAge(int age);
}