score-addon-hardware/Hardware/Controller.hpp

25 lines
240 B
C++
Raw Normal View History

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