#ifndef CONTROLLER_HPP
#define CONTROLLER_HPP
namespace Hardware
{
struct Controller
Controller() = default;
enum Commands
Play = 0,
Stop,
Left,
Right,
Up,
Down
};
}
#endif // CONTROLLER_HPP