mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-30 17:02:19 +00:00
15 lines
235 B
C++
15 lines
235 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include "InputDevice.h"
|
|
|
|
extern std::map<int, int> windowsTransTable;
|
|
|
|
class KeyboardDevice : public InputDevice {
|
|
public:
|
|
virtual int UpdateState();
|
|
virtual bool IsPad() { return false; }
|
|
|
|
private:
|
|
};
|