mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
synced 2025-05-12 00:45:25 +00:00
13 lines
161 B
C++
13 lines
161 B
C++
#include "qhexedit.h"
|
|
|
|
class GRamView : public QHexEdit
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GRamView(QWidget* parent = NULL);
|
|
|
|
public slots:
|
|
void OnCPUStepped();
|
|
};
|