This commit is contained in:
Tenari
2026-04-09 19:07:29 -05:00
parent 7ec8dc5815
commit ae8d1431b6
+10 -4
View File
@@ -423,16 +423,22 @@ union Range1i64
i64 v[2]; i64 v[2];
}; };
typedef union Range1f32 Range1f32; typedef union Vec2f32 {
union Range1f32
{
struct struct
{ {
f32 min; f32 min;
f32 max; f32 max;
}; };
struct
{
f32 x;
f32 y;
};
f32 v[2]; f32 v[2];
}; } Vec2f32;
typedef Vec2f32 Range1f32;
typedef Vec2f32 Vec2;
#if OS_WINDOWS #if OS_WINDOWS
# define WIN32_LEAN_AND_MEAN # define WIN32_LEAN_AND_MEAN