#ifndef COLOR_H #define COLOR_H #include "SDL.h" typedef struct { Uint32 color; Uint8 alpha; SDL_Color components; } Color_t; Color_t * CreateColor(Uint8 r, Uint8 g, Uint8 b); Color_t * CreateColorAlpha(Uint8 r, Uint8 g, Uint8 b, Uint8 a); #endif