pub trait PyxelCallback {
    fn update(&mut self);
    fn draw(&mut self);
}

Required Methods

Implementors