21
paper-api/src/main/java/org/bukkit/entity/Tadpole.java
Normal file
21
paper-api/src/main/java/org/bukkit/entity/Tadpole.java
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user