org.rsmod.game.pathfinder.collision.CollisionStrategy.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.collision
public interface CollisionStrategy {
public fun canMove(tileFlag: Int, blockFlag: Int): Boolean
}