1
0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
citra-canary/src/citra_qt/debugger/ramview.hxx
Mathieu Vaillancourt e5f09b8be6 UI/debugger changes
2014-04-18 18:34:23 -04:00

13 lines
161 B
C++

#include "qhexedit.h"
class GRamView : public QHexEdit
{
Q_OBJECT
public:
GRamView(QWidget* parent = NULL);
public slots:
void OnCPUStepped();
};