Skip to content
Snippets Groups Projects
Light.h 153 B
Newer Older
Yoel's avatar
Yoel committed
#pragma once
Yoel's avatar
Yoel committed
#include "../camera/Hit.h"
Yoel's avatar
Yoel committed

namespace shapes {
class Light {
   public:
Yoel's avatar
Yoel committed
	virtual cam::Hit sampleLight() const = 0;
Yoel's avatar
Yoel committed
};
}  // namespace shapes