about summary refs log tree commit diff
path: root/src/components/color.rs
diff options
context:
space:
mode:
authorGenny <gen@nyble.dev>2020-11-06 23:33:01 -0600
committerGenny <gen@nyble.dev>2020-11-06 23:33:01 -0600
commitc54872f011c135bbbc963f4a2b6b1d8ee4fa92bc (patch)
tree6ee047a5929fbd92a664c041b0596b53f58d59aa /src/components/color.rs
parent85b5d7de253f5f91dbca4047196e005856fd52de (diff)
downloadgifed-c54872f011c135bbbc963f4a2b6b1d8ee4fa92bc.tar.gz
gifed-c54872f011c135bbbc963f4a2b6b1d8ee4fa92bc.zip
Add gif components
Diffstat (limited to 'src/components/color.rs')
-rw-r--r--src/components/color.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/color.rs b/src/components/color.rs
new file mode 100644
index 0000000..dc134ef
--- /dev/null
+++ b/src/components/color.rs
@@ -0,0 +1,11 @@
+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