mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
Changed indentation to tabs
This commit is contained in:
Vendored
+2
-2
@@ -31,8 +31,8 @@ PointInRect :: proc "c" (p: Point, r: Rect) -> bool {
|
|||||||
|
|
||||||
@(require_results)
|
@(require_results)
|
||||||
PointInRectFloat :: proc "c" (p: FPoint, r: FRect) -> bool {
|
PointInRectFloat :: proc "c" (p: FPoint, r: FRect) -> bool {
|
||||||
return ( (p.x >= r.x) && (p.x <= (r.x + r.w)) &&
|
return ( (p.x >= r.x) && (p.x <= (r.x + r.w)) &&
|
||||||
(p.y >= r.y) && (p.y <= (r.y + r.h)) )
|
(p.y >= r.y) && (p.y <= (r.y + r.h)) )
|
||||||
}
|
}
|
||||||
|
|
||||||
@(require_results)
|
@(require_results)
|
||||||
|
|||||||
Reference in New Issue
Block a user