mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-02 06:06:24 +00:00
20 lines
375 B
C++
20 lines
375 B
C++
#pragma once
|
|
#include "InputDevice.h"
|
|
#include "Xinput.h"
|
|
|
|
class XinputDevice :
|
|
public InputDevice
|
|
{
|
|
public:
|
|
XinputDevice();
|
|
virtual int UpdateState(InputState &input_state);
|
|
virtual bool IsPad() { return true; }
|
|
private:
|
|
void ApplyButtons(XINPUT_STATE &state, InputState &input_state);
|
|
int gamepad_idx;
|
|
int check_delay;
|
|
XINPUT_STATE prevState;
|
|
u32 prevButtons;
|
|
};
|
|
|