3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus/src/main/lombok/nl/sbdeveloper/themeparkplus/api/enums/WalkingDirection.java
2020-06-01 13:43:13 +02:00

23 lines
530 B
Java

package nl.sbdeveloper.themeparkplus.api.enums;
import org.bukkit.block.BlockFace;
public enum WalkingDirection {
/**
* The walking direction. Removed combinations because those can't be used in the commands.
*/
NORTH(BlockFace.NORTH),
EAST(BlockFace.EAST),
SOUTH(BlockFace.SOUTH),
WEST(BlockFace.WEST);
private BlockFace blockFace;
WalkingDirection(BlockFace blockFace) {
this.blockFace = blockFace;
}
public BlockFace getBlockFace() {
return blockFace;
}
}