e88ee06310
Having everything in global.ini meant that if you wanted different settings for studio mode, that it would also overwrite it for basic mode. This way, the settings for each mode are separate, and you can use different settings for each mode.
16 lines
262 B
C++
16 lines
262 B
C++
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <util/config-file.h>
|
|
|
|
class OBSMainWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
inline OBSMainWindow(QWidget *parent) : QMainWindow(parent) {}
|
|
|
|
virtual config_t Config() const=0;
|
|
virtual void OBSInit()=0;
|
|
};
|