org.rsmod.game.pathfinder.flag.BlockAccessFlag.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rsmod-pathfinder Show documentation
Show all versions of rsmod-pathfinder Show documentation
A custom BFS pathfinder implementation to emulate RS.
The newest version!
package org.rsmod.game.pathfinder.flag
/**
* @author Kris | 15/01/2022
*/
public object BlockAccessFlag {
public const val BLOCK_NORTH: Int = 0x1
public const val BLOCK_EAST: Int = 0x2
public const val BLOCK_SOUTH: Int = 0x4
public const val BLOCK_WEST: Int = 0x8
}