14 lines
248 B
C
14 lines
248 B
C
#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);
|
|
int checkData(Data *data);
|
|
#endif //DATA_H
|