#ifndef IZ_POINT2D_H #define IZ_POINT2D_H #include "../../common/IZ_common.h" typedef struct { f32 x; f32 y; } IZ_Point2D; IZ_Point2D IZ_Point2DTranslate(IZ_Point2D, f32, f32); #endif