Untitled
Anonymous
plain_text
08/27/2024 1:26 AM
312 B
20
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