goaprs 0.2.1

Goal Oriented Action Planning implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Utility modules for GOAP

pub mod actor;
pub mod automaton;
pub mod shell_command;

pub use actor::ActorAutomatonController;
pub use automaton::Automaton;
pub use automaton::AutomatonController;
pub use shell_command::ShellCommand;