mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 16:24:53 +02:00
17 lines
251 B
C++
17 lines
251 B
C++
#pragma once
|
|
|
|
#include <list>
|
|
#include <memory>
|
|
|
|
#include "../Common/CommonTypes.h"
|
|
|
|
struct InputState;
|
|
|
|
class InputDevice
|
|
{
|
|
public:
|
|
virtual int UpdateState(InputState &input_state) = 0;
|
|
};
|
|
|
|
std::list<std::shared_ptr<InputDevice>> getInputDevices();
|