Update to glium 0.30, glutin 0.27 and winit 0.25
[mandelwow.git] / lib.rs
diff --git a/lib.rs b/lib.rs
index 8fd85f419be5ad221d0347cde5b668f28aba6f6b..296f5b92787e6a500ecc70067a0077ba3d9b32ac 100644 (file)
--- a/lib.rs
+++ b/lib.rs
@@ -1,14 +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 cube::Cube;
+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;