aboutsummaryrefslogtreecommitdiff
path: root/src/utils/rgba.h
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2023-12-07 16:23:20 -0500
committersotech117 <michael_foiani@brown.edu>2023-12-07 16:23:20 -0500
commitcaa765bff49d54217b75aaf0e7acf4e5392a11e4 (patch)
tree9b92914dfb88b99599e8e60e4512e9e9ea9a25db /src/utils/rgba.h
parenta9274459443f1d560d7580a162deb581549980cb (diff)
upload base code
Diffstat (limited to 'src/utils/rgba.h')
-rw-r--r--src/utils/rgba.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/utils/rgba.h b/src/utils/rgba.h
new file mode 100644
index 0000000..2103dab
--- /dev/null
+++ b/src/utils/rgba.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include <cstdint>
+
+struct RGBA {
+ std::uint8_t r;
+ std::uint8_t g;
+ std::uint8_t b;
+ std::uint8_t a = 255;
+};