15 lines
353 B
C++
15 lines
353 B
C++
#pragma once
|
|
#include "ConfigSection.hpp"
|
|
#include <qqmlregistration.h>
|
|
|
|
class Background : public ConfigSection {
|
|
Q_OBJECT
|
|
QML_UNCREATABLE("Instantiated internally by Config")
|
|
|
|
CFG_PROPERTY(bool, enabled, Enabled)
|
|
CFG_PROPERTY(int, wallFadeDuration, WallFadeDuration)
|
|
|
|
public:
|
|
explicit Background(QObject *parent = nullptr);
|
|
};
|