mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:57:47 +00:00
Intense hacking on Widgets.
This commit is contained in:
parent
8c84f9749e
commit
6f37429f57
20 changed files with 290 additions and 5 deletions
14
Widgets/Color.h
Normal file
14
Widgets/Color.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#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 };
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue