mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 14:07:58 +03:00
20 lines
462 B
C
20 lines
462 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "input/InputProvider.h"
|
||
|
#include "directinput/Manager.h"
|
||
|
|
||
|
class CInputProviderDirectInput : public CInputProvider
|
||
|
{
|
||
|
public:
|
||
|
CInputProviderDirectInput();
|
||
|
virtual ~CInputProviderDirectInput() = default;
|
||
|
|
||
|
uint32 GetId() const override;
|
||
|
std::string GetTargetDescription(const BINDINGTARGET&) const override;
|
||
|
|
||
|
private:
|
||
|
void HandleInputEvent(const GUID&, uint32, uint32);
|
||
|
|
||
|
std::unique_ptr<Framework::DirectInput::CManager> m_diManager;
|
||
|
};
|