Begin WordComplete
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user