All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.entity.EntitySwimmable Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.entity;

import cn.nukkit.api.PowerNukkitXOnly;
import cn.nukkit.api.Since;

/**
 * 实现了此接口的生物可游泳
 */
@PowerNukkitXOnly
@Since("1.19.60-r1")
public interface EntitySwimmable {
    /**
     * @return 此实体是否会受到溺水伤害
     */
    default boolean canDrown() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy