mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
18 lines
350 B
C
18 lines
350 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "input/InputProvider.h"
|
||
|
#include "GamePadDeviceListener.h"
|
||
|
|
||
|
class CInputProviderEvDev : public CInputProvider
|
||
|
{
|
||
|
public:
|
||
|
CInputProviderEvDev();
|
||
|
virtual ~CInputProviderEvDev();
|
||
|
|
||
|
uint32 GetId() const override;
|
||
|
std::string GetTargetDescription(const BINDINGTARGET&) const override;
|
||
|
|
||
|
private:
|
||
|
CGamePadDeviceListener m_GPDL;
|
||
|
};
|