Mesen-SX/Core/InputHud.h

20 lines
355 B
C
Raw Normal View History

#pragma once
#include "stdafx.h"
#include "SettingTypes.h"
#include "ControlDeviceState.h"
class Console;
class InputHud
{
private:
Console* _console;
void DrawController(int port, ControlDeviceState state, int x, int y, int frameNumber);
public:
2020-12-19 23:30:09 +03:00
InputHud(Console* console);
void DrawControllers(OverscanDimensions overscan, int frameNumber);
2020-12-19 23:30:09 +03:00
};