goap-ai 0.2.0

Goal-Oriented Action Planning (GOAP) AI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod action;
mod config;
mod goal;
mod model;
mod planner;
mod state;

pub use action::Action;
pub use config::Config;
pub use goal::Goal;
pub use model::Model;
pub use planner::{Algorithm, Plan, Planner, Solution};
pub use state::State;