Files
axyz/include/Engine/Core/Ray.h
T

13 lines
136 B
C

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