Skip to content

Instantly share code, notes, and snippets.

@makkarpov
makkarpov / Color.cpp
Created June 6, 2016 19:55
MSI keyboard C++
#include "Color.h"
Color::Color(uint8_t r, uint8_t g, uint8_t b) noexcept
: _r(r), _g(g), _b(b)
{
}
uint8_t Color::r() const noexcept {
return _r;
}