tetris/game-ctrl/buttons.h

17 lines
290 B
C
Raw Permalink 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-05-18 20:09:21 +02:00
void buttonsStart();
2024-04-19 11:38:32 +02:00
bool isGameActive();
2024-05-18 20:09:21 +02:00
bool isConfigMode();
bool buttonsConfig1Pressed();
bool buttonsConfig2Pressed();
bool buttonsConfig3Pressed();
bool buttonsConfig4Pressed();
2024-03-14 14:46:31 +01:00
#endif // _BUTTONS_H_