big-brain 0.2.0

Rusty Utility AI library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use bevy;
pub use big_brain_derive::*;
pub use serde;
pub use typetag;

pub use actions::*;
pub use choices::*;
pub use considerations::*;
pub use thinker::*;

pub mod evaluators;
pub mod measures;
pub mod pickers;

mod actions;
mod choices;
mod considerations;
mod thinker;