make the render function private

This commit is contained in:
Shuo Feng 2024-02-08 16:43:41 -05:00
parent 1b0df92e70
commit 39c584eff9
Signed by: sfeng
GPG key ID: 1E83AE6CD1C037B1

View file

@ -7,12 +7,12 @@
class RayTracer {
public:
RayTracer(const nlohmann::json &);
void render();
void run();
private:
Scene scene;
nlohmann::json json;
void render();
};
#endif // !RAY_TRACER_H_