Added animated borders
This commit is contained in:
parent
993e601424
commit
586e2a98ed
7 changed files with 101 additions and 23 deletions
15
src/helpers/Color.hpp
Normal file
15
src/helpers/Color.hpp
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#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();
|
||||
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue