diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-18 11:21:23 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:20:50 +0200 |
commit | 3e8c24375f064487365a66c20fba20bea8e1f860 (patch) | |
tree | 590f03a6fed22ae3abfba3ae1aecb5a1d18a2b13 /test-client/util.ts | |
parent | 20a978e4f91e03588bf89d2426ee215f176b1ac7 (diff) | |
download | hurrycurry-3e8c24375f064487365a66c20fba20bea8e1f860.tar hurrycurry-3e8c24375f064487365a66c20fba20bea8e1f860.tar.bz2 hurrycurry-3e8c24375f064487365a66c20fba20bea8e1f860.tar.zst |
active recipes work
Diffstat (limited to 'test-client/util.ts')
-rw-r--r-- | test-client/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-client/util.ts b/test-client/util.ts index 6febac37..baebc61e 100644 --- a/test-client/util.ts +++ b/test-client/util.ts @@ -20,4 +20,4 @@ export function ceil_v2(p: V2): V2 { return { x: Math.ceil(p.x), y: Math.ceil(p. export function add_v2(p: V2, o: V2 | number) { if (typeof o == "number") return { x: p.x + o, y: p.y + o } else return { x: p.x + o.x, y: p.y + o.y } -}
\ No newline at end of file +} |