gaclen 0.0.14

A library for handling anything a game client needs to do.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod vertex {
	gaclen_shader::shader!{
		ty: "vertex",
		path: "examples/phong_cube/shader.vert",
	}

	// force recompilation on changes in shader source
	const _: &'static [u8] = include_bytes!("shader.vert");
}
pub mod fragment {
	gaclen_shader::shader!{
		ty: "fragment",
		path: "examples/phong_cube/shader.frag",
	}

	// force recompilation on changes in shader source
	const _: &'static [u8] = include_bytes!("shader.frag");
}