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

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

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

/**
 * @author MagicDroidX (Nukkit Project)
 */
public interface EntityRideable {

    /**
     * Mount or Dismounts an Entity from a rideable entity
     *
     * @param entity The target Entity
     * @return {@code true} if the mounting successful
     */
    boolean mountEntity(Entity entity);

    boolean dismountEntity(Entity entity);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy