aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/flash.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/components/flash.hpp')
-rw-r--r--include/components/flash.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/components/flash.hpp b/include/components/flash.hpp
new file mode 100644
index 0000000..e53c41c
--- /dev/null
+++ b/include/components/flash.hpp
@@ -0,0 +1,15 @@
+#ifndef COMPONENTS_FLASH_HPP_
+#define COMPONENTS_FLASH_HPP_
+
+#include <color.hpp>
+
+struct Flash
+{
+ Flash(Color c, int _ms = 500)
+ : color(c), ms(_ms), totalMs(_ms) {}
+
+ Color color;
+ int ms, totalMs;
+};
+
+#endif // COMPONENTS_FLASH_HPP_