nes/src/SdlKeyboardController.h
Selim Mustafaev 796828fa01 Adding controller.
Adding logging.
Fixing lots of bugs.
2023-09-18 00:10:41 +03:00

17 lines
267 B
C++

//
// Created by selim on 9/17/23.
//
#ifndef NES_SDLKEYBOARDCONTROLLER_H
#define NES_SDLKEYBOARDCONTROLLER_H
#include "Controller.h"
class SdlKeyboardController: public nes::Controller {
public:
void poll() override;
};
#endif //NES_SDLKEYBOARDCONTROLLER_H