aboutsummaryrefslogtreecommitdiff
path: root/plot.h
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2019-04-03 22:06:00 +1300
committerDavid Phillips <david@sighup.nz>2019-04-03 22:06:00 +1300
commit3dc61fd55d97a407e18a3306263b7013302f4130 (patch)
tree9ebb99b14f8634f421098041c0bf6b873faa562e /plot.h
parent3c395d1abb65f525ba83ca5d61654ffd1497facf (diff)
downloadtetris-3dc61fd55d97a407e18a3306263b7013302f4130.tar.xz
Add lines counter/scoring
Diffstat (limited to 'plot.h')
-rw-r--r--plot.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/plot.h b/plot.h
index edde581..75accc8 100644
--- a/plot.h
+++ b/plot.h
@@ -1,5 +1,6 @@
void plot_rect(unsigned int x, unsigned int y, unsigned int width, unsigned int height, struct colour *c);
void plot_cell(unsigned int x, unsigned int y, struct colour *c);
+void plot_text(const char *message, TTF_Font *font, SDL_Color color, int x, int y);
void plot_clear(void);
int plot_init(void);
void plot_update(void);