bhv 0.4.0

A crate providing means to create and use Behavior Trees
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

#[cfg(feature = "events")]
mod events_impl;

#[cfg(feature = "events")]
pub use events_impl::*;

#[cfg(not(feature = "events"))]
mod old_impl;

#[cfg(not(feature = "events"))]
pub use old_impl::*;