Enum topaz::Transition [] [src]

pub enum Transition {
    Switch(Rc<RefCell<State>>),
    Push(Rc<RefCell<State>>),
    Quit,
    Pop,
}

A transition to another State.

Variants

Switch to another state.

Push another state.

Pop this state, returning to the parent state.

Quit the engine.