mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
17 lines
258 B
C++
17 lines
258 B
C++
#pragma once
|
|
|
|
#include <list>
|
|
#include <memory>
|
|
|
|
#include "../Common/CommonTypes.h"
|
|
|
|
struct InputState;
|
|
|
|
class InputDevice
|
|
{
|
|
public:
|
|
enum { UPDATESTATE_SKIP_PAD = 0x1234};
|
|
virtual int UpdateState(InputState &input_state) = 0;
|
|
virtual bool IsPad() = 0;
|
|
};
|