From 0fc1134119b5a6b171aae3091cfa5d58f3e286e3 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Fri, 2 Sep 2022 19:39:59 +0200 Subject: [PATCH] added missing file --- src/helpers/Color.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/helpers/Color.hpp diff --git a/src/helpers/Color.hpp b/src/helpers/Color.hpp new file mode 100644 index 0000000..274e000 --- /dev/null +++ b/src/helpers/Color.hpp @@ -0,0 +1,8 @@ +#pragma once + +#include "../defines.hpp" + +class CColor { +public: + uint8_t r = 0, g = 0, b = 0, a = 0; +}; \ No newline at end of file