Trait carboxyl_window::RunnableWindow [] [src]

pub trait RunnableWindow {
    fn run_with<F: FnMut()>(&mut self, fps: f64, render: F);

    fn run(&mut self, fps: f64) { ... }
}

An abstraction of a window's event generation facilities.

Required Methods

Run the window, calling a function every frame

Provided Methods

Run the window generating events

Implementors