Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/rogue/world/pathfinding/FillContext.java

28 lines
464 B

package mightypork.rogue.world.pathfinding;
import mightypork.rogue.world.Coord;
public interface FillContext {
boolean canEnter(Coord pos);
boolean canSpreadFrom(Coord pos);
Coord[] getSpreadSides();
/**
* Get the max distance filled form start point. Use -1 for unlimited range.
*
* @return max distance
*/
double getMaxDistance();
/**
* @return true if start should be spread no matter what
*/
boolean forceSpreadStart();
}