diff options
Diffstat (limited to 'vec3.h')
| -rw-r--r-- | vec3.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,5 @@ +#ifndef VEC3_H +#define VEC3_H #include <iostream> class vec3 { public: @@ -25,3 +27,4 @@ class vec3 { }; std::ostream &operator<<(std::ostream &output, const vec3 &v); +#endif |