summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 2679ac4e79895ef527b7bafc8ac6b1ade555a293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod game;
mod graphics;


fn main() {
	game::start();

	let graphics_thread = std::thread::spawn(move || {
		graphics::start();
	});

	graphics_thread.join().unwrap();
}