manabrew-protocol 5.0.0

Engine-free game DTOs shared by manabrew clients
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Engine-free DTOs shared by the game clients: decks, the game-domain types,
//! prompts, display events and the agent transport envelopes. The relay wire
//! protocol lives in `manabrew-relay-protocol`, which depends on this crate.
pub mod deck_dto;
pub mod display;
pub mod game;
pub mod prompts;
pub mod token;
pub mod transport;

pub use token::TokenScript;