Untitled
unknown
plain_text
20 days ago
257 B
2
Indexable
Never
#ifndef TETROMINO_HPP #define TETROMINO_HPP struct Point { int x, y; }; void resetTetromino(int& colorNum, int& nextColorNum, int& nextTemo); bool checkTetromino(int field[23][10]); bool isDraw(); bool checkI(); bool checkO(); #endif // TETROMINO_HPP
Leave a Comment