mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-13 04:50:26 +00:00
23 lines
232 B
C++
23 lines
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;
|
|
}; |