mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-03 19:21:13 +00:00
8 lines
145 B
C++
8 lines
145 B
C++
#pragma once
|
|
#include "InputDevice.h"
|
|
|
|
class KeyboardDevice : public InputDevice {
|
|
public:
|
|
virtual int UpdateState(InputState &input_state);
|
|
};
|