1234567891011121314151617181920212223 |
- #ifndef CONTROLLER_H
- #define CONTROLLER_H
- #include "input/Buttons.h"
- struct Controller {
- Button a;
- Button b;
- Button x;
- Button y;
- Button l;
- Button r;
- Button start;
- Button select;
- Button left;
- Button right;
- Button up;
- Button down;
- Controller(Buttons& buttons);
- };
- #endif
|