mirror of
https://github.com/libretro/ppsspp.git
synced 2025-01-21 08:14:48 +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();
|
||
|
};
|