From 41ea2d8f94043d49fc26aaaa8030a73dcfdc2da9 Mon Sep 17 00:00:00 2001 From: Julian T Date: Sun, 24 Jan 2021 18:13:44 +0100 Subject: Create rust project --- app/config.hpp | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 app/config.hpp (limited to 'app/config.hpp') diff --git a/app/config.hpp b/app/config.hpp deleted file mode 100644 index 6e9962c..0000000 --- a/app/config.hpp +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef CONFIG_H -#define CONFIG_H - -#include - -class Config { - public: - unsigned m_width, m_height; - unsigned m_maxhops, m_samples; - - unsigned m_framerate, m_workers; -}; - -class RendererConf : public Renderer { - public: - RendererConf(const Scene &scn, Vec3d eye, Vec3d target, Config &conf) - : Renderer(scn, eye, target, conf.m_width, conf.m_height, conf.m_maxhops) { - - } -}; - -#endif -- cgit v1.2.3