diff --git a/RayTracer/tools/Vertex.h b/RayTracer/tools/Vertex.h new file mode 100644 index 0000000000000000000000000000000000000000..9ec9fd2ab3eaa0bc7c75e4420353c62236874cdc --- /dev/null +++ b/RayTracer/tools/Vertex.h @@ -0,0 +1,12 @@ +#pragma once + +#include "Vec3.h" + +namespace util { +class Vertex { + public: + util::Vec3 position; + util::Vec3 texcoord; + util::Vec3 normal; +}; +} // namespace util \ No newline at end of file