Slime Pathfinder Events

This commit is contained in:
BillyGalbreath
2018-08-24 08:18:27 -05:00
parent 8170ae9d64
commit b589db2d90
6 changed files with 186 additions and 0 deletions

View File

@@ -24,4 +24,20 @@ public interface Slime extends Mob, Enemy {
* @param sz The new size of the slime.
*/
public void setSize(int sz);
// Paper start
/**
* Get whether this slime can randomly wander/jump around on its own
*
* @return true if can wander
*/
public boolean canWander();
/**
* Set whether this slime can randomly wander/jump around on its own
*
* @param canWander true if can wander
*/
public void setWander(boolean canWander);
// Paper end
}