10 lines
225 B
C
10 lines
225 B
C
#ifndef RESEARCH_H
|
|
#define RESEARCH_H
|
|
|
|
bool research(void); // detect clusters
|
|
int eliminate_c(void); // eliminate clusters
|
|
int cascade(void); // cascade ceiling tiles
|
|
int clear_mat(void); // clear matched array;
|
|
|
|
#endif
|