platform for developing on SQFMI's Watchy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
295 B

#ifndef _MODULE_INPUT_h
#define _MODULE_INPUT_h
#define MODULE_INPUT_BUTTONS 4
struct InputButtonState;
class Module_Input : public Task, public IRunnable
{
InputButtonState* m_button[MODULE_INPUT_BUTTONS];
public:
Module_Input();
void start();
void tick();
};
#endif