Mesen-X/Core/IControlDevice.h
2014-06-21 15:43:41 -04:00

23 lines
No EOL
232 B
C++

#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;
};