From e439153862f3360010beff6f6ad02d1b79e20570 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gro=C3=9F?= Date: Mon, 6 Aug 2018 14:51:50 +0200 Subject: [PATCH] Epds isn't really needed --- src/epds.rs | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/epds.rs diff --git a/src/epds.rs b/src/epds.rs deleted file mode 100644 index c1ed3f8..0000000 --- a/src/epds.rs +++ /dev/null @@ -1,18 +0,0 @@ -/// A struct containing necessary info about a epd (electronic paper display). E.g: -/// -/// - Width -/// - Height -/// ... -/// -/// This needs to be implemented by each new Display -pub(crate) struct EPD { - pub(crate) width: u16, - pub(crate) height: u16 - //displayrotation? -} - -impl EPD { - pub(crate) fn new(width: u16, height: u16) -> EPD { - EPD {width, height} - } -} \ No newline at end of file