NEW一个FINDBOOM
This commit is contained in:
15
include/data.h
Normal file
15
include/data.h
Normal 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
|
||||
Reference in New Issue
Block a user