new一个FINDBOOM

This commit is contained in:
wlx
2025-07-17 20:46:02 +08:00
parent 68eebdd09f
commit 457bf79d39
15 changed files with 314 additions and 321 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