mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-30 10:47:50 -05:00
15 lines
239 B
C++
15 lines
239 B
C++
#ifndef OPENRGBTHEMEMANAGER_H
|
|
#define OPENRGBTHEMEMANAGER_H
|
|
|
|
#include <string>
|
|
|
|
class OpenRGBThemeManager
|
|
{
|
|
public:
|
|
static void Init();
|
|
static void SetDarkTheme();
|
|
static bool IsDarkTheme();
|
|
};
|
|
|
|
#endif // OPENRGBTHEMEMANAGER_H
|