Mesen-X/Core/IControlDevice.h

23 lines
232 B
C
Raw Normal View History

2014-06-21 15:43:41 -04:00
#pragma once
#include "stdafx.h"
struct ButtonState
{
bool Up;
bool Down;
bool Left;
bool Right;
bool A;
bool B;
bool Select;
bool Start;
};
class IControlDevice
{
public:
virtual ButtonState GetButtonState() = 0;
};