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