mirror of
https://github.com/fn2006/PollyMC.git
synced 2025-09-18 03:27:37 -04:00
12 lines
144 B
C++
12 lines
144 B
C++
#pragma once
|
|
|
|
#include "ITheme.h"
|
|
|
|
class FusionTheme: public ITheme
|
|
{
|
|
public:
|
|
virtual ~FusionTheme() {}
|
|
|
|
QString qtTheme() override;
|
|
};
|