aboutsummaryrefslogtreecommitdiff
path: root/core/src/data/mod.rs
blob: 19589a20f7ccfe23f76c98558d2b18320576cea1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
use bincode::config;
use bincode::config::Configuration;

pub const BINCODE_CONVERT_FAILED : Vec<u8> = Vec::new();
pub const BINCODE_CONFIG : Configuration = config::standard();

pub mod controller;
pub mod game;
pub mod message;
pub mod player;