nes/examples/sdl/SdlGamepadController.h
2025-09-09 00:24:39 +03:00

17 lines
275 B
C++

//
// Created by selim on 09.09.2025.
//
#ifndef NES_SDLGAMEPADCONTROLLER_H
#define NES_SDLGAMEPADCONTROLLER_H
#include "../../src/Controller.h"
class SdlGamepadController: public nes::Controller
{
public:
void poll() override;
};
#endif //NES_SDLGAMEPADCONTROLLER_H