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