Files
ComSquare/sources/Debugger/RamViewer.cpp
2020-02-17 00:32:10 +01:00

19 lines
358 B
C++

//
// 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();
}
}