From 0e3e3725d34114cde3aa569fef617bc3cb4ca3f9 Mon Sep 17 00:00:00 2001 From: Jason Bou-Samra <154414066+bou-samra@users.noreply.github.com> Date: Tue, 27 Aug 2024 19:20:00 +1000 Subject: [PATCH] Update column.h --- src/column.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/column.h b/src/column.h index 02d30c4..297ad39 100644 --- a/src/column.h +++ b/src/column.h @@ -6,6 +6,7 @@ extern int tile_next[3]; extern int grid[2][18][8]; extern int mask[2]; extern int spr_y[6]; +extern int colcnt[8]; int new_column (); // select random column to drop brick into int disp_column (int row, int col); // update column board @@ -14,5 +15,6 @@ int rotate_col (void); int display_tile (); // display current column in play (not implemented) int move_horiz (void); int move_down (void); +int count_col(void); #endif