1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-29 19:16:56 -06:00

18 lines
317 B
C
Raw Normal View History

// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
2014-03-31 22:26:50 -04:00
#include "qhexedit.h"
class GRamView : public QHexEdit {
2014-03-31 22:26:50 -04:00
Q_OBJECT
public:
explicit GRamView(QWidget* parent = nullptr);
2014-03-31 22:26:50 -04:00
public slots:
void OnCPUStepped();
};