bunch of stuff. very basic drag/drop now working

This commit is contained in:
Ikatono
2024-05-20 03:23:01 -05:00
commit fac2260a01
28 changed files with 1631 additions and 0 deletions

15
settings.hpp Normal file
View File

@@ -0,0 +1,15 @@
#ifndef SETTINGS_HPP
#define SETTINGS_HPP
#include <QObject>
class Settings : public QObject
{
Q_OBJECT
public:
explicit Settings(QObject *parent = nullptr);
signals:
};
#endif // SETTINGS_HPP