NEW一个FINDBOOM

This commit is contained in:
wlx
2025-07-17 21:00:21 +08:00
parent 68eebdd09f
commit a262e8d508
8 changed files with 314 additions and 14 deletions

11
include/img.h Normal file
View File

@ -0,0 +1,11 @@
#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