mirror of
https://github.com/zoriya/ComSquare.git
synced 2025-12-20 22:25:11 +00:00
Preparing the creation of a Ram Viewer
This commit is contained in:
19
sources/Debugger/RamViewer.cpp
Normal file
19
sources/Debugger/RamViewer.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// Created by anonymus-raccoon on 2/17/20.
|
||||
//
|
||||
|
||||
#include "RamViewer.hpp"
|
||||
#include "../SNES.hpp"
|
||||
|
||||
namespace ComSquare::Debugger
|
||||
{
|
||||
RamViewer::RamViewer(ComSquare::SNES &snes) :
|
||||
QMainWindow(), _snes(snes)
|
||||
{
|
||||
this->setContextMenuPolicy(Qt::NoContextMenu);
|
||||
this->setAttribute(Qt::WA_QuitOnClose, false);
|
||||
|
||||
// this->_ui.setupUi(this);
|
||||
this->show();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user