mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 11:39:44 +03:00
15 lines
193 B
C++
15 lines
193 B
C++
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
class Color {
|
|
public:
|
|
Color() { }
|
|
Color(byte r, byte g, byte b);
|
|
|
|
dword value() const { return m_value; }
|
|
|
|
private:
|
|
dword m_value { 0 };
|
|
};
|