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

15
include/data.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef DATA_H
#define DATA_H
typedef struct Data {
int x,y,boom;
int **arr;
int **arrcopy;
} Data;
void initData(Data *data, int x, int y ,int boom);
void getData(Data *data, int x, int y);
void showData(Data *data);
#endif //DATA_H