cloudy-raytracer/shader/mirrorshader.h
2022-11-11 14:39:48 +01:00

16 lines
256 B
C++

#ifndef MIRRORSHADER_H
#define MIRRORSHADER_H
#include "shader/shader.h"
class MirrorShader : public Shader {
public:
// Constructor
MirrorShader();
// Shader functions
Color shade(Scene const &scene, Ray const &ray) const override;
};
#endif