score-addon-hardware/Hardware/Controller.hpp

25 lines
235 B
C++
Raw Normal View History

2024-10-03 23:50:15 +01:00
#ifndef CONTROLLER_HPP
#define CONTROLLER_HPP
namespace Hardware
2024-10-03 23:50:15 +01:00
{
struct Controller
{
Controller() = default;
enum Commands
{
Play = 0,
Stop,
Left,
Right,
Up,
Down
};
};
}
#endif // CONTROLLER_HPP