mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
7 lines
145 B
C++
7 lines
145 B
C++
#pragma once
|
|
#include "InputDevice.h"
|
|
|
|
class KeyboardDevice : public InputDevice {
|
|
public:
|
|
virtual int UpdateState(InputState &input_state);
|
|
};
|