mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
16 lines
285 B
C++
16 lines
285 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include "base/mutex.h"
|
|
#include "InputDevice.h"
|
|
|
|
extern std::map<int, int> windowsTransTable;
|
|
|
|
class KeyboardDevice : public InputDevice {
|
|
public:
|
|
virtual int UpdateState(InputState &input_state);
|
|
virtual bool IsPad() { return false; }
|
|
|
|
private:
|
|
};
|