Windows build ready. Program icon, however, exceeds string length on MSVC.

This commit is contained in:
2026-05-27 00:07:06 -07:00
parent 5f663308d2
commit e72db80fb4
13 changed files with 270 additions and 141 deletions
+6
View File
@@ -65,4 +65,10 @@ F32 Square(F32 A)
return Result;
}
F32 InnerProduct(v2 A, v2 B)
{
F32 Result = A.X*B.X + A.Y*B.Y;
return Result;
}
#endif