#pragma once #include "ConfigSection.hpp" #include 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); };