You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Drop tetromino 'tet' into column 'droppedColumn' and update the state of the grid through 'grid' and 'gridColumnHeights'. If the tetromino lands above the top of the grid, return FALSE and abort the dropping. Return TRUE otherwise
int dropTetrominoToGrid(tetromino *tet, int droppedColumn, char grid[GRID_HEIGHT][GRID_WIDTH], int gridColumnHeights[GRID_WIDTH]);