mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
26 lines
455 B
C++
26 lines
455 B
C++
#pragma once
|
|
|
|
#include <QAction>
|
|
#include <QWidget>
|
|
#include <filesystem>
|
|
#include <memory>
|
|
|
|
#include "emulator.hpp"
|
|
|
|
class QListWidget;
|
|
|
|
class CheatsWindow final : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CheatsWindow(Emulator* emu, const std::filesystem::path& path, QWidget* parent = nullptr);
|
|
~CheatsWindow() = default;
|
|
|
|
private:
|
|
void addEntry();
|
|
void removeClicked();
|
|
|
|
QListWidget* cheatList;
|
|
std::filesystem::path cheatPath;
|
|
Emulator* emu;
|
|
};
|