2023-01-24 06:44:20 +01:00
|
|
|
#ifndef CG1_TRACER_CLOUDNOISE_H
|
|
|
|
#define CG1_TRACER_CLOUDNOISE_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "noise.h"
|
|
|
|
|
2023-01-24 07:52:55 +01:00
|
|
|
class CloudNoise : public Noise
|
2023-01-24 06:44:20 +01:00
|
|
|
{
|
|
|
|
public:
|
2023-01-24 07:52:55 +01:00
|
|
|
CloudNoise(int size);
|
2023-01-24 06:44:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //CG1_TRACER_CLOUDNOISE_H
|