Untitled
unknown
plain_text
a year ago
234 B
9
Indexable
#ifndef FIELD_H
#define FIELD_H
class Field {
public:
int field[23][10];
Field();
void clear();
void checkLines(int& score);
void placeTetromino(Tetromino& tetromino);
bool isGameOver();
};
#endif // FIELD_HEditor is loading...
Leave a Comment