X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=lib.rs;h=296f5b92787e6a500ecc70067a0077ba3d9b32ac;hb=c104450968cfa85a8d77fcb4858038fe2d2c7fdd;hp=8fd85f419be5ad221d0347cde5b668f28aba6f6b;hpb=4bffab48bf2013c60962e848a98ce4064973cf5e;p=mandelwow.git diff --git a/lib.rs b/lib.rs index 8fd85f4..296f5b9 100644 --- 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;