Files
Paper/paper-api/src/main/java/org/bukkit/entity/GlowSquid.java
Bukkit/Spigot 153752dfac Update to Minecraft 1.17
By: md_5 <git@md-5.net>
2021-06-11 15:00:00 +10:00

26 lines
600 B
Java

package org.bukkit.entity;
/**
* A Glow Squid.
*/
public interface GlowSquid extends Squid {
/**
* Get the number of dark ticks remaining for this squid.
*
* Bravo Six will go dark for 100 ticks (5 seconds) if damaged.
*
* @return dark ticks remaining
*/
int getDarkTicksRemaining();
/**
* Sets the number of dark ticks remaining for this squid.
*
* Bravo Six will go dark for 100 ticks (5 seconds) if damaged.
*
* @param darkTicksRemaining dark ticks remaining
*/
void setDarkTicksRemaining(int darkTicksRemaining);
}