snes9x/qt/src/EmulationPanel.hpp
2023-08-25 11:47:29 -05:00

16 lines
293 B
C++

#pragma once
#include "ui_EmulationPanel.h"
class EmuApplication;
class EmulationPanel :
public Ui::EmulationPanel,
public QWidget
{
public:
EmulationPanel(EmuApplication *app);
~EmulationPanel();
void showEvent(QShowEvent *event) override;
EmuApplication *app;
};