xege 0.3.0

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

fn main() {
    let mut xege = initgraph(640, 480, Init::NoForceExit).unwrap();
    xege.set_caption("支持 Unicode 字符");
    while xege.is_run() {}
}