mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
15 lines
290 B
C
15 lines
290 B
C
#pragma once
|
|
|
|
#include "IGpInputDriver.h"
|
|
#include "GpInputDriverProperties.h"
|
|
#include "GpVOSEvent.h"
|
|
|
|
union SDL_Event;
|
|
|
|
struct IGpInputDriverSDLGamepad : public IGpInputDriver
|
|
{
|
|
virtual void ProcessSDLEvent(const SDL_Event &evt) = 0;
|
|
|
|
static IGpInputDriverSDLGamepad *GetInstance();
|
|
};
|