diff options
author | David Phillips <david@sighup.nz> | 2017-01-28 15:22:07 +1300 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-01-28 15:22:07 +1300 |
commit | 09a6684f41c82b352a81ed114d774c4eecd5e0f4 (patch) | |
tree | ad5320c5ec2bfd83fc6be8113a62bec9924349d6 /plot.h | |
parent | 5abfed0347c799132e1045c0fc4724a283f6cc1d (diff) | |
download | tetris-09a6684f41c82b352a81ed114d774c4eecd5e0f4.tar.xz |
Style adjustment
Diffstat (limited to 'plot.h')
-rw-r--r-- | plot.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ 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_clear(); -int plot_init(); -void plot_update(); +void plot_clear(void); +int plot_init(void); +void plot_update(void); #define CELL_SIZE 25 #define BORDER_THICKNESS 2 |