Update to Minecraft 1.13-pre7

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2018-07-15 10:00:00 +10:00
parent debc7172fd
commit 767e4f6ccf
199 changed files with 8301 additions and 3637 deletions

View File

@@ -0,0 +1,21 @@
package org.bukkit.entity;
/**
* Represents a puffer fish.
*/
public interface PufferFish extends Fish {
/**
* Returns the current puff state of this fish (i.e. how inflated it is).
*
* @return current puff state
*/
int getPuffState();
/**
* Sets the current puff state of this fish (i.e. how inflated it is).
*
* @param state new puff state
*/
void setPuffState(int state);
}