aboutsummaryrefslogtreecommitdiff
path: root/src/object.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/object.hpp')
-rw-r--r--src/object.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/object.hpp b/src/object.hpp
new file mode 100644
index 0000000..56c6968
--- /dev/null
+++ b/src/object.hpp
@@ -0,0 +1,19 @@
+#ifndef OBJECT_H
+#define OBJECT_H
+
+#include <memory>
+#include "vector.hpp"
+
+class Material {
+ Vec3d color;
+
+ double defuse;
+ double emissive;
+};
+
+class Object {
+ public:
+ std::shared_ptr<Material> m;
+};
+
+#endif