#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;
float r;
float g;
float b;
float red;
float green;
float blue;
} PtkColor;
} PtkVec4;
float a;
float alpha;
} PtkColorA;
#endif // PTK_PTK_VEC_H_