Delete src/rotate_column.c

This commit is contained in:
Jason Bou-Samra
2024-07-26 17:55:14 +10:00
committed by GitHub
parent 69d0389972
commit 5e1acc10ad
-10
View File
@@ -1,10 +0,0 @@
// rotate tiles in brick by 1
int rotate_col (void)
{
int temp;
temp = tile_current[0];
tile_current[0] = tile_current[1];
tile_current[1] = tile_current[2];
tile_current[2] = temp;
return 0;
}