mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
8 lines
122 B
C
8 lines
122 B
C
|
#pragma once
|
||
|
#include "InputDevice.h"
|
||
|
|
||
|
class KeyboardDevice : public InputDevice {
|
||
|
public:
|
||
|
virtual int UpdateState();
|
||
|
};
|