Update column.h

This commit is contained in:
Jason Bou-Samra
2024-08-03 10:35:33 +10:00
committed by GitHub
parent 8794de86b8
commit bba6315c84
+13
View File
@@ -1 +1,14 @@
#ifndef COLUMN_H
#define COLUMN_H
extern int tile_current[3];
extern int tile_next[3];
int new_column (); // select random column to drop brick into
int disp_column (int row, int col); // update column board
int new_brick (void); // choose current/preview random brick
int rotate_col (void);
int display_tile (); // display current column in play (not implemented)
int move_horiz (void);
int move_down (void);
#endif