Mesen-SX/Core/InputHud.h
NovaSquirrel c0e249e993 Revert "Merge branch 'reformat_code'"
This reverts commit daf3b57e89, reversing
changes made to 7a6e0b7d77.
2021-03-10 11:13:28 -05:00

19 lines
No EOL
354 B
C++

#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:
InputHud(Console *console);
void DrawControllers(OverscanDimensions overscan, int frameNumber);
};