Update to Minecraft 1.19

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2022-06-08 02:00:00 +10:00
parent 9bfa9ca85b
commit ec575f5252
88 changed files with 1339 additions and 375 deletions

View File

@@ -0,0 +1,21 @@
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);
}