Untitled
unknown
plain_text
17 days ago
234 B
2
Indexable
Never
#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_H
Leave a Comment