mirror of
https://github.com/jcreek/CosmicClash.git
synced 2026-09-11 00:14:00 +00:00
docs(multiplayer): consolidate tracking into one document
multiplayer-todo.md and multiplayer-next.md tracked overlapping information in two places. Fold everything into multiplayer-next.md (architecture decisions, wire format, task breakdown with checkboxes, gotchas list, testing notes) and delete multiplayer-todo.md. Section numbers are unchanged, so existing code comments citing them by section/task number still resolve; update every such reference to point at the new filename.
This commit is contained in:
@@ -97,7 +97,7 @@ func test_snapshot_roundtrip_seven_bodies() -> void:
|
||||
|
||||
var packet := NetCodec.pack_snapshot(555, -2, 1234, segment)
|
||||
assert_eq(packet.size(), NetCodec.SNAPSHOT_CLIENT_HEADER_SIZE + segment.size(), "full packet size")
|
||||
assert_eq(packet.size(), 169, "matches multiplayer-todo.md §2.4's 169 B payload figure for 7 bodies")
|
||||
assert_eq(packet.size(), 169, "matches multiplayer-next.md §2.4's 169 B payload figure for 7 bodies")
|
||||
|
||||
var decoded := NetCodec.unpack_snapshot(packet)
|
||||
assert_eq(decoded["last_input_seq"], 555, "last_input_seq")
|
||||
|
||||
Reference in New Issue
Block a user