added missing file

This commit is contained in:
vaxerski 2022-09-02 19:39:59 +02:00
parent 9a577dc2e0
commit 0fc1134119
1 changed files with 8 additions and 0 deletions

8
src/helpers/Color.hpp Normal file
View File

@ -0,0 +1,8 @@
#pragma once
#include "../defines.hpp"
class CColor {
public:
uint8_t r = 0, g = 0, b = 0, a = 0;
};