Delete src/new_brick.c

This commit is contained in:
Jason Bou-Samra
2024-07-26 17:53:41 +10:00
committed by GitHub
parent 82f664f4c8
commit 72100e5294
-8
View File
@@ -1,8 +0,0 @@
// generate random 3 tile bricks for current and preview
new_brick {
for (i = 0; i < 3; i++) {
tile_current[i] = randombytes_uniform(5) + 1; // current piece
tile_next[i] = randombytes_uniform(5) + 1; // next piece
}
return 0;
}