1
0
mirror of https://gitlab.com/klmp200/LO27.git synced 2024-07-01 09:08:03 +00:00
LO27/LibGui/pixel.h

14 lines
160 B
C

#ifndef PIXEL_H_INCLUDED
#define PIXEL_H_INCLUDED
#include <SDL2/SDL.h>
typedef struct {
SDL_Rect position;
Uint8 color;
} PIXEL;
void SDL_test();
#endif