arora-behavior-tree 0.1.1

The Arora behavior tree: Groot-compatible trees ticking Arora modules.
1
2
3
4
5
6
7
use derive_more::Display;
#[derive(Display, Debug)]
pub struct DeserializationError {
    #[display("deserialization error: {}", message)]
    pub message: String,
}
impl std::error::Error for DeserializationError {}