mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-01 15:14:37 +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;
|
|
};
|