mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-30 14:44:31 +02:00
11 lines
148 B
C++
11 lines
148 B
C++
#pragma once
|
|
|
|
#include "ITheme.h"
|
|
|
|
class FusionTheme : public ITheme {
|
|
public:
|
|
virtual ~FusionTheme() {}
|
|
|
|
QString qtTheme() override;
|
|
};
|