Files
vba10/KeyboardInput.h
2015-08-03 20:36:43 +00:00

25 lines
418 B
C++

#pragma once
#include "Input.h"
#include "EmulatorInput.h"
#include <agile.h>
using namespace Windows::UI::Core;
namespace VBA10
{
class KeyboardInput
: public EmulatorInput
{
public:
KeyboardInput(void);
~KeyboardInput(void);
const ControllerState *GetControllerState(void);
void Update(void);
private:
ControllerState state;
Platform::Agile<CoreWindow^> window;
};
}