mirror of
https://gitlab.com/klmp200/LO27.git
synced 2024-11-05 12:18:03 +00:00
14 lines
160 B
C
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
|