net.minestom.server.entity.RelativeFlags Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-lib-snapshots Show documentation
Show all versions of minestom-lib-snapshots Show documentation
1.21 Lightweight Minecraft server
package net.minestom.server.entity;
public final class RelativeFlags {
public static final int NONE = 0x00;
public static final int X = 0x01;
public static final int Y = 0x02;
public static final int Z = 0x04;
public static final int YAW = 0x08;
public static final int PITCH = 0x10;
public static final int COORD = X | Y | Z;
public static final int VIEW = YAW | PITCH;
public static final int ALL = COORD | VIEW;
}