mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-14 12:53:03 +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();
|
|
};
|