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

net.minestom.server.entity.metadata.ambient.BatMeta Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.entity.metadata.ambient;

import net.minestom.server.entity.Entity;
import net.minestom.server.entity.MetadataHolder;
import org.jetbrains.annotations.NotNull;

public class BatMeta extends AmbientCreatureMeta {
    public static final byte OFFSET = AmbientCreatureMeta.MAX_OFFSET;
    public static final byte MAX_OFFSET = OFFSET + 0;

    private final static byte IS_HANGING_BIT = 0x01;

    public BatMeta(@NotNull Entity entity, @NotNull MetadataHolder metadata) {
        super(entity, metadata);
    }

    public boolean isHanging() {
        return getMaskBit(OFFSET, IS_HANGING_BIT);
    }

    public void setHanging(boolean value) {
        setMaskBit(OFFSET, IS_HANGING_BIT, value);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy