about summary refs log tree commit diff
path: root/src/components/color.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/color.rs')
-rw-r--r--src/components/color.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/components/color.rs b/src/components/color.rs
deleted file mode 100644
index dc134ef..0000000
--- a/src/components/color.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-pub struct Color {
-	pub r: u8,
-	pub g: u8,
-	pub b: u8
-}
-
-impl Color {
-	pub fn new(r: u8, g: u8, b: u8) -> Self {
-		Self { r, g, b }
-	}
-}
\ No newline at end of file