Begin WordComplete

This commit is contained in:
Krzosa Karol
2026-01-24 18:14:38 +01:00
parent 26691ab6d3
commit 3618d906e6
4 changed files with 91 additions and 2 deletions

View File

@@ -142,4 +142,8 @@ Int SafeDivide(Int a, Int b) {
bool AreOverlapping(Vec2I point, Rect2I rec) {
bool result = (point.x >= rec.min.x) && (point.x < rec.max.x) && (point.y >= rec.min.y) && (point.y < rec.max.y);
return result;
}
Int Absolute(Int value) {
return llabs(value);
}