You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
335 B
C++
21 lines
335 B
C++
#pragma once
|
|
|
|
#include "OpenRGBPluginInterface.h"
|
|
#include "ResourceManager.h"
|
|
|
|
#include <QPluginLoader>
|
|
#include <QLabel>
|
|
#include <QtPlugin>
|
|
#include <QDir>
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
class PluginManager
|
|
{
|
|
public:
|
|
std::vector<OpenRGBPluginInterface*> ActivePlugins;
|
|
|
|
void ScanAndLoadPlugins(bool dark_theme);
|
|
};
|