// SPDX-License-Identifier: AGPL-3.0-only //! Shared types and logic for Synvael. //! //! This crate contains data structures and constants that are used by both the client and the server. pub mod generator; pub mod protocol; pub mod save; pub mod session; pub mod world;