tetris/game-ctrl/buttons.h

11 lines
128 B
C
Raw Normal View History

2024-03-14 14:46:31 +01:00
#ifndef _BUTTONS_H_
#define _BUTTONS_H_
2024-04-19 11:38:32 +02:00
#include <stdbool.h>
2024-03-14 14:46:31 +01:00
void buttonsInit();
2024-04-19 11:38:32 +02:00
bool isGameActive();
2024-03-14 14:46:31 +01:00
#endif // _BUTTONS_H_