bracket-lib 0.8.7

Meta-crate holding the entirety of bracket-lib (and exposing it). Use this for the full roguelike toolkit experience.
Documentation
## Bracket-Pathfinding Examples


### astar


[Source Code](https://github.com/amethyst/bracket-lib/tree/master/bracket-pathfinding/examples/astar)

A quick demonstration of A-star pathfinding in action. Demonstrates the minimum required for accurate A-star pathing.

![](./ex_path_astar.jpg)

### astar_manhattan


[Source Code](https://github.com/amethyst/bracket-lib/tree/master/bracket-pathfinding/examples/astar_manhattan)

Demonstrates using Manhattan distances in A-Star, rather than regular Pythagoras.

![](./ex_path_astar_manhattan.jpg)

### dijkstra


[Source Code](https://github.com/amethyst/bracket-lib/tree/master/bracket-pathfinding/examples/dijkstra)

Demonstrates the usage of the Dijkstra maps feature by brightening areas close to starting points, and darkening those further away.

![](./ex_path_dijkstra.jpg)

### fov


[Source Code](https://github.com/amethyst/bracket-lib/tree/master/bracket-pathfinding/examples/fov)

Demonstrates the Field-of-View functionality.

![](./ex_path_fov.jpg)