17 lines
290 B
C
17 lines
290 B
C
#ifndef _BUTTONS_H_
|
|
#define _BUTTONS_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
void buttonsInit();
|
|
void buttonsStart();
|
|
bool isGameActive();
|
|
bool isConfigMode();
|
|
bool buttonsConfig1Pressed();
|
|
bool buttonsConfig2Pressed();
|
|
bool buttonsConfig3Pressed();
|
|
bool buttonsConfig4Pressed();
|
|
|
|
|
|
#endif // _BUTTONS_H_
|