#ifndef PIXEL_H_INCLUDED #define PIXEL_H_INCLUDED #include typedef struct { SDL_Rect position; Uint8 color; } PIXEL; void SDL_test(); #endif