#ifndef Ray_h__ #define Ray_h__ #include "../GLM.h" struct Ray { glm::vec3 Origin; glm::vec3 Direction; }; #endif // Ray_h__