xege 0.2.4

Rust style safe warpper of C++ graphics libraries.
Documentation
1
2
3
4
5
6
7
8
9
use xege::*;

fn main() {
    let xege = initgraph(640, 480, Init::NoForceExit).unwrap();
    while xege.is_run() {
        println!("XEGE is running.");
    }
    println!("XEGE is stopped.");
}