blizz-fsm 3.0.0-beta.3

Generic state machine engine for sequential state processing
Documentation
1
2
3
4
5
6
7
8
9
mod branch;
pub mod input;
mod state;
mod state_machine;

pub use branch::{AdvanceFn, Branch, BranchFn};
pub use input::{Action, Direction};
pub use state::{State, StateResult};
pub use state_machine::StateMachine;