1 2 3 4 5 6 7 8 9 10 11 12 13 14 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_