summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a73f3df..3255b0a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -8,7 +8,7 @@ pub use window::*;
pub use window_controller::*;
pub use window_manager::*;
-pub use buffer::{Buffer, Colour};
+pub use buffer::*;
pub use winit::{
event::{ModifiersState, ElementState},
event::VirtualKeyCode as KeyCode,
@@ -16,10 +16,6 @@ pub use winit::{
};
pub use std::num::NonZeroU32;
-pub type Point = geometry::Point<i32>;
-pub type Dimensions = geometry::Dimensions<u32>;
-pub type Rect = geometry::Rect<i32, u32>;
-
// -----------------------------------------------------------------------------
#[derive(Copy, Clone)]