From 0fe213d648e4e2cd8088d440f6d4daeee9ff990a Mon Sep 17 00:00:00 2001 From: Allan POINT Date: Mon, 31 Jan 2022 09:46:12 +0100 Subject: [PATCH] Add commons collors --- Pontu/src/engine/Colors.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Pontu/src/engine/Colors.h diff --git a/Pontu/src/engine/Colors.h b/Pontu/src/engine/Colors.h new file mode 100644 index 0000000..f90f370 --- /dev/null +++ b/Pontu/src/engine/Colors.h @@ -0,0 +1,11 @@ +#ifndef COLORS_H_INCLUDED +#define COLORS_H_INCLUDED + +#include + +const SDL_Color COLOR_GENERIC_BUTTON_BACKGROUND = {225, 225, 225, 255}; +const SDL_Color COLOR_GENERIC_BUTTON_BORDER = {10, 10, 10, 255}; + + +#endif +