diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-17 13:32:18 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-17 13:32:18 +0200 |
commit | 5d2bd4a2a6e38d75a5168afc1ef9a6cbcd90ea36 (patch) | |
tree | cab52ea116eb19fc2a0a3b2158b2086b6db790a9 /test-client/protocol.ts | |
parent | 3f23989c2829a4a99349d4670511d71c0f4af8e1 (diff) | |
download | hurrycurry-5d2bd4a2a6e38d75a5168afc1ef9a6cbcd90ea36.tar hurrycurry-5d2bd4a2a6e38d75a5168afc1ef9a6cbcd90ea36.tar.bz2 hurrycurry-5d2bd4a2a6e38d75a5168afc1ef9a6cbcd90ea36.tar.zst |
active start / stop
Diffstat (limited to 'test-client/protocol.ts')
-rw-r--r-- | test-client/protocol.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-client/protocol.ts b/test-client/protocol.ts index 717383d4..707c09a3 100644 --- a/test-client/protocol.ts +++ b/test-client/protocol.ts @@ -7,7 +7,7 @@ export type PacketS = { join: { name: string } } | "leave" | { position: { pos: Vec2, rot: number } } - | { interact: { pos: Vec2 } } + | { interact: { pos: Vec2, edge: boolean } } export type PacketC = |