manabrew-protocol 0.42.0

Wire protocol for manabrew multiplayer
Documentation
1
2
3
4
5
6
7
8
9
//! Engine-free wire protocol shared by `manabrew-server` (the relay) and the game
//! clients — split out of `manabrew-agent-interface` so the relay needn't compile
//! the engine. Engine-coupled DTOs (prompts, `StateEnvelope`) stay there.
pub mod deck_dto;
pub mod display;
pub mod game;
pub mod prompts;
pub mod protocol;
pub mod transport;