Bump version to 0.6.0
[mandelwow.git] / lib.rs
1 extern crate cgmath;
2 #[macro_use(uniform,program,implement_vertex)]
3 extern crate glium;
4 extern crate glutin;
5 extern crate libxm;
6 extern crate sdl2;
7
8 pub mod bounding_box;
9 pub mod cube;
10 pub mod mandelwow;
11 pub mod sound;
12 pub mod support;
13
14 pub use cube::Cube;