paysages3d/src/interface/modeler/quickapp/AtmosphereModeler.h

30 lines
429 B
C
Raw Normal View History

2014-08-28 13:09:47 +00:00
#ifndef ATMOSPHEREMODELER_H
#define ATMOSPHEREMODELER_H
#include "modeler_global.h"
#include <QObject>
namespace paysages {
namespace modeler {
class AtmosphereModeler : public QObject
{
Q_OBJECT
public:
AtmosphereModeler(MainModelerWindow *main);
public slots:
void daytimeChanged(double value);
private:
FloatNode *propDayTime() const;
2014-08-28 13:09:47 +00:00
MainModelerWindow *main;
};
}
}
#endif // ATMOSPHEREMODELER_H