xege 0.2.3

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

use xege::*;

fn main() {
    let mut xege = initgraph(640, 480, Init::Hide | Init::NoForceExit).unwrap();
    sleep(Duration::from_secs(1));
    xege.window.show();
    while xege.is_run() {}
}