#ifndef VECTOR3_H #define VECTOR3_H typedef struct { float x, y, z; } Vec3; Vec3* vec3(float x, float y, float z); #endif // VECTOR3_H