mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-30 11:11:37 +00:00
15 lines
174 B
C++
15 lines
174 B
C++
#ifndef CDARKSTYLE_H
|
|
#define CDARKSTYLE_H
|
|
|
|
#include <QProxyStyle>
|
|
|
|
class CDarkStyle : public QProxyStyle
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CDarkStyle();
|
|
};
|
|
|
|
#endif // CDARKSTYLE_H
|