diff --git a/include/blah/math/vec3.h b/include/blah/math/vec3.h new file mode 100644 index 0000000..172aaaf --- /dev/null +++ b/include/blah/math/vec3.h @@ -0,0 +1,23 @@ +#pragma once + +namespace Blah +{ + struct Vec3 + { + float x; + float y; + float z; + + Vec3() + : x(0) + , y(0) + , z(0) + {} + + Vec3(float x, float y, float z) + : x(x) + , y(y) + , z(z) + {} + }; +} \ No newline at end of file