diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-29 21:37:36 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-29 21:37:36 +0200 |
commit | b3a619e0b6b220a5bcf46a9704e2a49c7905b550 (patch) | |
tree | 234fd39c63846a8bfe2d487bb20ead2c3180b92d /server/protocol/src | |
parent | 30570816b3c460b69e6b410cdddb3e6516b80e22 (diff) | |
download | hurrycurry-b3a619e0b6b220a5bcf46a9704e2a49c7905b550.tar hurrycurry-b3a619e0b6b220a5bcf46a9704e2a49c7905b550.tar.bz2 hurrycurry-b3a619e0b6b220a5bcf46a9704e2a49c7905b550.tar.zst |
Refactor server connection data
Diffstat (limited to 'server/protocol/src')
-rw-r--r-- | server/protocol/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/protocol/src/lib.rs b/server/protocol/src/lib.rs index 90106317..c32bff39 100644 --- a/server/protocol/src/lib.rs +++ b/server/protocol/src/lib.rs @@ -125,10 +125,11 @@ pub enum PacketS { timeout: Option<f32>, pin: Option<bool>, }, - Idle { paused: bool, }, + Ready, + /// For use in replay sessions only ReplayTick { dt: f64, |