mirror of
https://github.com/izzy2lost/vba10.git
synced 2026-03-26 18:15:30 -07:00
25 lines
418 B
C++
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;
|
|
};
|
|
} |