Fix benchmarks for latest glium/glutin API
[mandelwow.git] / lib.rs
diff --git a/lib.rs b/lib.rs
index aaf2b3c708b4786b9183b8c0d690c305ec345e6b..296f5b92787e6a500ecc70067a0077ba3d9b32ac 100644 (file)
--- a/lib.rs
+++ b/lib.rs
@@ -1,17 +1,15 @@
-extern crate cgmath;
-#[macro_use(uniform,program,implement_vertex)]
-extern crate glium;
-extern crate glutin;
-extern crate libxm;
-extern crate sdl2;
-
 pub mod bounding_box;
 pub mod cube;
 pub mod mandelwow;
 pub mod shaded_cube;
+pub mod screenshot;
 pub mod sound;
 pub mod support;
+pub mod text;
+pub mod timer;
 
-pub use bounding_box::BoundingBox;
-pub use cube::Cube;
-pub use shaded_cube::ShadedCube;
+pub use crate::bounding_box::BoundingBox;
+pub use crate::cube::Cube;
+pub use crate::shaded_cube::ShadedCube;
+pub use crate::text::Text;
+pub use crate::timer::Timer;