mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 17:06:00 +01:00
15 lines
218 B
C++
15 lines
218 B
C++
|
#pragma once
|
||
|
|
||
|
#include "../includes.hpp"
|
||
|
|
||
|
class CColor {
|
||
|
public:
|
||
|
CColor();
|
||
|
CColor(float, float, float, float);
|
||
|
CColor(uint64_t);
|
||
|
|
||
|
float r = 0, g = 0, b = 0, a = 255;
|
||
|
|
||
|
uint64_t getAsHex();
|
||
|
|
||
|
};
|