Trait hate::scene::action::Action [] [src]

pub trait Action: Debug {
    fn begin(&mut self) { ... }
    fn update(&mut self, _dtime: Time) { ... }
    fn end(&mut self) { ... }
    fn try_fork(&mut self) -> Option<Box<Action>> { ... }
    fn is_finished(&self) -> bool { ... }
}

Provided Methods

Implementors