summary refs log tree commit diff
path: root/src/graphics/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphics/mod.rs')
-rw-r--r--src/graphics/mod.rs10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/graphics/mod.rs b/src/graphics/mod.rs
index 3d03f9c..bb12c80 100644
--- a/src/graphics/mod.rs
+++ b/src/graphics/mod.rs
@@ -1,9 +1,15 @@
 #![deny(unsafe_code)]
-
 pub mod model;
 pub mod permanent;
-pub mod render_state;
+pub mod render;
 pub mod texture;
 pub mod scene;
 pub mod util;
 pub mod window_dressing;
+
+pub use crate::graphics::model::Model;
+pub use crate::graphics::texture::Texture;
+pub use crate::graphics::permanent::{ Permanent, ForReinit };
+pub use crate::graphics::render::Render;
+pub use crate::graphics::window_dressing::WindowDressing;
+