2012-11-12 15:38:21 +00:00
|
|
|
#include "../Common/CommonTypes.h"
|
|
|
|
#include "../Core/HLE/sceCtrl.h"
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
class InputDevice
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual int UpdateState() = 0;
|
|
|
|
};
|
|
|
|
|
2012-11-17 22:44:29 +00:00
|
|
|
#include <windows.h>
|
2012-11-12 17:32:35 +00:00
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
|
|
|
std::list<std::shared_ptr<InputDevice>> getInputDevices();
|