Brick Game v1.0
Implementation of the game Tetris in the C programming language with a terminal user interface.
Loading...
Searching...
No Matches
start.h
1#ifndef BRICK_GAME_V1_0_BRICK_GAME_TETRIS_GAME_START_H_
2#define BRICK_GAME_V1_0_BRICK_GAME_TETRIS_GAME_START_H_
3
4#include "../game.h"
5
6void handle_start(GameData *game_data);
7
8void handle_game_over(GameData *game_data);
9
10#endif // BRICK_GAME_V1_0_BRICK_GAME_TETRIS_GAME_START_H_
A structure containing all data about the current game session.
Definition game.h:116