adding material class

This commit is contained in:
Dynamitos
2025-01-25 23:19:43 +01:00
parent 7beaabd34c
commit 8fdaff1e4c
5 changed files with 15 additions and 1 deletions
+2
View File
@@ -1,6 +1,8 @@
target_sources(RayTracer
PRIVATE
Camera.h
Material.h
Material.cpp
Model.h
Model.cpp
ModelLoader.h
+1
View File
@@ -0,0 +1 @@
#include "Material.h"
+7
View File
@@ -0,0 +1,7 @@
#pragma once
class Material
{
public:
private:
};