mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
18 lines
284 B
C++
18 lines
284 B
C++
#pragma once
|
|
|
|
#include <list>
|
|
#include <memory>
|
|
|
|
#include "../Common/CommonTypes.h"
|
|
#include "../Core/HLE/sceCtrl.h"
|
|
|
|
struct InputState;
|
|
|
|
class InputDevice
|
|
{
|
|
public:
|
|
virtual int UpdateState(InputState &input_state) = 0;
|
|
};
|
|
|
|
std::list<std::shared_ptr<InputDevice>> getInputDevices();
|