X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=lib.rs;h=296f5b92787e6a500ecc70067a0077ba3d9b32ac;hb=9ae471dda58c74e83c7080f7ea527105e063aef3;hp=aaf2b3c708b4786b9183b8c0d690c305ec345e6b;hpb=c298ca511683f329dfedd18bf9490520586cf8cf;p=mandelwow.git diff --git a/lib.rs b/lib.rs index aaf2b3c..296f5b9 100644 --- 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;