#pragma once /* * PS4Delta : PS4 emulation and research project * * Copyright 2019-2020 Force67. * For information regarding licensing see LICENSE * in the root of the source tree. */ #include #include #include #include #include #include #include "ui/mainwindow.h" class deltaCore : public QApplication { Q_OBJECT public: using argvList = std::vector; deltaCore(int &, char **); bool init(); void boot(std::string &fromdir); argvList argv; private: bool headless{false}; std::unique_ptr window; std::unique_ptr proc; };