lexsdl 0.3.0

A wrapper for SDL2 to abstract away annoying parts
1
2
3
4
5
6
7
8
9
10
use lexsdl::*;

fn main() {
	let options = LexSdlOptions::default();
	init(&options).unwrap();
	run(||{
		//todo
	});
	quit();
}