#ifndef PTK_PTK_VEC_H_
#define PTK_PTK_VEC_H_
typedef struct {
float x;
float y;
} PtkVec2;
typedef PtkVec2 PtkPos;
typedef union {
struct {
float w;
float h;
};
float width;
float height;
} PtkSize;
float z;
} PtkVec3;
} PtkVec4;
#endif // PTK_PTK_VEC_H_