12 lines
206 B
C
12 lines
206 B
C
#ifndef IMG_H
|
|
#define IMG_H
|
|
#include "SDL_render.h"
|
|
|
|
typedef struct Img {
|
|
SDL_Texture *texture[10];
|
|
} Img;
|
|
|
|
void initImg(Img * img, const char * arr[],int len, SDL_Renderer * renderer);
|
|
|
|
#endif //IMG_H
|