aboutsummaryrefslogtreecommitdiffstats
path: root/include/components/flash.hpp
blob: e53c41caddd06fd52272a921e43cdbff4c0d0a84 (plain)
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_