behavior-tree 0.1.0

Yet another behavior tree library for rust!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum Status {
    Initialized,
    Success,
    Failure,
    Running,
}

impl core::default::Default for Status {
    fn default() -> Self {
        Self::Initialized
    }
}