ygopro_data/message.rs
1//! The ygopro wire messages.
2//!
3//! This module holds the message types exchanged over the network and with the core:
4//! client-to-server (`ctos`), server-to-client (`stoc`), and ygocore game messages (`gm`),
5//! plus the flat `all` message type. It is the source of the `every_*_flat_message!`
6//! macros.
7
8pub mod client_to_server;
9pub mod server_to_client;
10pub mod game_message;
11pub mod all_in_one;
12mod utils;
13
14pub use client_to_server as ctos;
15pub use server_to_client as stoc;
16pub use game_message as gm;
17pub use all_in_one as all;
18pub use utils::*;
19