mirror of
https://github.com/izzy2lost/vba10.git
synced 2026-03-26 18:15:30 -07:00
17 lines
240 B
C++
17 lines
240 B
C++
#pragma once
|
|
|
|
#include "Input.h"
|
|
|
|
namespace VBA10
|
|
{
|
|
class EmulatorInput
|
|
{
|
|
public:
|
|
virtual ~EmulatorInput(void) { }
|
|
|
|
const virtual ControllerState *GetControllerState(void) = 0;
|
|
|
|
virtual void Update(void) = 0;
|
|
};
|
|
}
|