cloudy-raytracer/shader/mirrorshader.h

17 lines
256 B
C
Raw Normal View History

2022-11-11 14:39:48 +01:00
#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