xege 0.2.4

Rust style safe warpper of C++ graphics libraries.
Documentation
1
2
3
4
5
6
7
8
use std::{thread::sleep, time::Duration};
use xege::*;

fn main() {
    let xege = initgraph(640, 480, Init::Default).unwrap();
    sleep(Duration::from_secs(5));
    xege.closegraph();
}