game_loop
pub fn game_loop<G, U, R>( game: G, updates_per_second: u32, update: U, render: R) -> Control<G> where U: FnMut(&mut Control<G>), R: FnMut(&mut Control<G>),