Skip to main content

hypen_engine/serialize/
mod.rs

1//! Serialization for the Remote UI protocol.
2//!
3//! The Remote UI protocol allows the Hypen engine to run on a server while
4//! a thin client renders the UI. See [`RemoteMessage`] for the wire format.
5
6pub mod remote;
7
8pub use remote::{InitialTree, PatchStream, RemoteMessage};