11 lines
146 B
C
11 lines
146 B
C
|
#include "../Common/CommonTypes.h"
|
||
|
#include "../Core/HLE/sceCtrl.h"
|
||
|
|
||
|
#pragma once
|
||
|
class InputDevice
|
||
|
{
|
||
|
public:
|
||
|
virtual int UpdateState() = 0;
|
||
|
};
|
||
|
|