11 lines
128 B
C
11 lines
128 B
C
#ifndef _BUTTONS_H_
|
|
#define _BUTTONS_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
void buttonsInit();
|
|
bool isGameActive();
|
|
|
|
|
|
#endif // _BUTTONS_H_
|